/* New landing page styles */
:root {
    --primary-color: rgb(37, 99, 235);
    --primary-dark: #12b1e6;
    --primary-light: #12b1e6;
    --secondary-color: #1A73E8;
    --background-color: #F8FAFC;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;
    --border-radius: 12px;
}

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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.5;
}

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

/* Navigation */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
}

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

.nav-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 8rem 2rem 6rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF3F9 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed);
}

.hero-cta.primary {
    background: var(--primary-color);
    color: white;
}

.hero-cta.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.hero-cta.secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-cta.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    /* border-radius: var(--border-radius);
    box-shadow: var(--card-shadow); */
    transition: transform var(--transition-speed);
}

.hero-image:hover {
    transform: translateY(-8px);
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 2rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 4rem;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
}

/* Features Section Styles */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, white, var(--background-color));
    position: relative;
    overflow: hidden;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed);
    border: 1px solid rgba(9, 30, 66, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(9, 30, 66, 0.12);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    font-size: 2rem;
    color: white;
}

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

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.feature-list li i {
    color: var(--success-color);
    font-size: 1.25rem;
}

/* Packages Section */
.packages-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, white, var(--background-color));
    position: relative;
    overflow: hidden;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(9, 30, 66, 0.08);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(9, 30, 66, 0.12);
    border-color: var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    background: linear-gradient(to bottom, white, #F8FAFF);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    right: -3rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 3.5rem;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(13, 138, 188, 0.25);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(9, 30, 66, 0.08);
}

.package-header h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.package-price .currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.package-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.package-duration {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.package-features {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.package-features li i {
    color: var(--success-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.package-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-top: 2rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    font-size: 1.125rem;
    box-shadow: 0 4px 8px rgba(13, 138, 188, 0.25);
}

.package-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(13, 138, 188, 0.3);
}

/* Feedback Section */
.feedback-section {
    padding: 6rem 2rem;
    background: linear-gradient(to bottom, var(--background-color), white);
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(9, 30, 66, 0.13), transparent);
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feedback-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed);
    border: 1px solid rgba(9, 30, 66, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(9, 30, 66, 0.12);
    border-color: var(--primary-color);
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.feedback-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feedback-avatar i {
    font-size: 2.5rem;
    color: white;
}

.feedback-author h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.feedback-author span {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.feedback-rating {
    display: flex;
    gap: 0.25rem;
    color: #FFB400;
    font-size: 1.25rem;
}

.feedback-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.125rem;
    font-style: italic;
    flex-grow: 1;
}

/* Footer Section */
.footer-section {
    background: var(--text-primary);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.footer-brand p {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-links h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links ul li a {
    color: #CBD5E1;
    text-decoration: none;
    transition: all var(--transition-speed);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-contact h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-contact p {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-cta {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.footer-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-bottom p {
    color: #CBD5E1;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-weight: 500;
    color: #94A3B8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-cta-group {
        justify-content: center;
    }

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

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .package-card.featured {
        transform: none;
    }

    .package-card.featured:hover {
        transform: translateY(-8px);
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

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

    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links ul li a:hover {
        transform: translateY(-2px);
    }

    .feedback-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .packages-section {
        padding: 4rem 1.5rem;
    }

    .package-card {
        padding: 2rem;
    }

    .package-price .amount {
        font-size: 3rem;
    }

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

    .feature-card {
        padding: 2rem;
    }

    .feedback-section {
        padding: 4rem 1.5rem;
    }

    .feedback-card {
        padding: 2rem;
    }

    .footer-section {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        padding: 1.5rem;
    }

    .package-price .amount {
        font-size: 2.5rem;
    }

    .package-features li {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .feedback-section {
        padding: 3rem 1rem;
    }

    .feedback-card {
        padding: 1.5rem;
    }

    .feedback-avatar {
        width: 48px;
        height: 48px;
    }

    .feedback-avatar i {
        font-size: 2rem;
    }

    .feedback-author h3 {
        font-size: 1.125rem;
    }

    .feedback-text {
        font-size: 1rem;
    }

    .feedback-rating {
        font-size: 1rem;
    }

    .footer-section {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.25rem;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 1.125rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-bottom p {
        font-size: 0.875rem;
    }
}

.social-proof-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 50;
    max-width: 400px;
  }
  
  .notification-text {
    color: #1f2937;
    font-size: 0.9375rem;
    line-height: 1.4;
  }
  
  .notification-time {
    color: #6b7280;
    font-size: 0.8125rem;
  }
  
  /* Enhanced Stats Animation */
  .stat-value {
    position: relative;
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
  }
  
  .stat-value::after {
    content: attr(data-value);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: countUp 2s ease-out forwards;
  }
  
  @keyframes countUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  