/* 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: #1f2937;
    background: #ffffff;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

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

.logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1f2937;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1f2937;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #1f2937;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #1f2937;
    color: white;
}

.btn-primary:hover {
    background: #111827;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: #1f2937;
    color: white;
}

.btn-white {
    background: white;
    color: #1f2937;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1758876202789-7f1388c96e01');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #4b5563;
    margin-bottom: 30px;
}

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

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

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Stats Section */
.stats {
    background: #1f2937;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #9ca3af;
}

/* Services Section */
.services-preview {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

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

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 20px;
}

.service-highlights {
    list-style: none;
    margin-bottom: 25px;
}

.service-highlights li {
    padding: 8px 0;
    color: #4b5563;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #9ca3af;
}

.stars {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    color: #1f2937;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    color: #d1d5db;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3,
.footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.3rem;
    color: #6b7280;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-tag {
    display: inline-block;
    background: #e5e7eb;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 15px;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.service-price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
}

.service-duration {
    color: #6b7280;
}

.features-box,
.highlights-box {
    background: #f9fafb;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.features-box h4,
.highlights-box h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.features-box ul {
    list-style: none;
}

.features-box li {
    padding: 8px 0;
    color: #4b5563;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}

.highlights-grid span {
    color: #4b5563;
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #9ca3af;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #6b7280;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #6b7280;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-top: 15px;
}

/* About */
.about-story {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values {
    padding: 80px 0;
    background: #f9fafb;
}

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

.value-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #9ca3af;
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-card p {
    color: #6b7280;
}

.why-choose {
    padding: 80px 0;
}

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

.why-grid {
    max-width: 900px;
    margin: 60px auto 0;
}

.why-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.why-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #1f2937;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.why-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.why-content p {
    color: #6b7280;
}

/* Contact */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 60px;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1f2937;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
}

.contact-info-wrapper p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: #9ca3af;
}

.contact-icon {
    font-size: 2rem;
    background: #1f2937;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 5px;
}

.contact-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
}

.contact-value:hover {
    color: #4b5563;
}

.office-hours {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    border-radius: 12px;
    padding: 30px;
}

.office-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.hours-item span {
    color: #d1d5db;
}

.hours-item strong {
    color: white;
}

.contact-cta {
    background: #f9fafb;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav,
    .header .btn-primary {
        display: none;
    }

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

    .nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .services-grid,
    .testimonials-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

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

    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* New Styles for Updated Services */
.tier-badge {
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 10px;
}

.tier-1 {
    background: #dbeafe;
    color: #1e40af;
}

.tier-2 {
    background: #dcfce7;
    color: #15803d;
}

.tier-3 {
    background: #fef3c7;
    color: #92400e;
}

.tier-4 {
    background: #e0e7ff;
    color: #4338ca;
}

.service-card.featured {
    position: relative;
    border: 3px solid #15803d;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #15803d;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

.popular-inline {
    display: inline-block;
    background: #15803d;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-prop {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    text-align: center;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.value-item p {
    color: #6b7280;
    font-size: 1.05rem;
}

.cost-comparison {
    padding: 80px 0;
    background: #f9fafb;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-card.traditional {
    border: 3px solid #ef4444;
}

.comparison-card.pridus {
    border: 3px solid #15803d;
    position: relative;
    transform: scale(1.05);
}

.card-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #6b7280;
}

.card-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.card-detail {
    color: #6b7280;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
}

.comparison-card li {
    padding: 10px 0;
    font-size: 1.05rem;
}

.best-for {
    background: #f9fafb;
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #1f2937;
}

.best-for strong {
    color: #1f2937;
}

.benefit-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-box h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.benefit-box p {
    color: #4b5563;
    margin: 0;
}

.exclusions-box {
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.exclusions-box h4 {
    color: #991b1b;
    margin-bottom: 12px;
}

.exclusions-box ul {
    list-style: none;
}

.exclusions-box li {
    color: #7f1d1d;
    padding: 5px 0;
}

.terms-section {
    background: #f9fafb;
    padding: 80px 0;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.term-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 2px solid #e5e7eb;
}

.term-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.term-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.term-card li {
    padding: 8px 0;
    color: #4b5563;
}

.term-card p {
    color: #4b5563;
    line-height: 1.7;
}

.cta-buttons-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #1f2937;
}

.service-price span {
    font-size: 1rem;
    color: #6b7280;
}

@media (max-width: 768px) {
    .comparison-card.pridus {
        transform: scale(1);
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

/* Why Us Page Styles */
.problem-section {
    padding: 80px 0;
    background: #fee2e2;
}

.subtitle-text {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 10px auto 50px;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #ef4444;
    transition: transform 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.pain-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.pain-stat {
    background: #fecaca;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #991b1b;
    margin-bottom: 15px;
}

.pain-card p {
    color: #4b5563;
    line-height: 1.7;
}

.solution-section {
    padding: 80px 0;
    background: #d1fae5;
}

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

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #10b981;
}

.solution-number {
    width: 40px;
    height: 40px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1f2937;
}

.solution-card p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.solution-list {
    list-style: none;
    margin-top: 15px;
}

.solution-list li {
    padding: 8px 0;
    color: #4b5563;
}

.comparison-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.old-way {
    background: #fee2e2;
    padding: 8px 16px;
    border-radius: 6px;
    color: #991b1b;
    font-weight: 600;
}

.new-way {
    background: #d1fae5;
    padding: 8px 16px;
    border-radius: 6px;
    color: #065f46;
    font-weight: 600;
}

.arrow {
    font-size: 1.5rem;
    color: #6b7280;
}

.savings-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
}

.comparison-table-section {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row.header {
    background: #1f2937;
    color: white;
    font-weight: 700;
}

.comparison-cell {
    padding: 20px;
    border-right: 1px solid #e5e7eb;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row:nth-child(even) {
    background: #f9fafb;
}

.feature {
    font-weight: 600;
    color: #1f2937;
}

.traditional-col {
    text-align: center;
    color: #991b1b;
}

.pridus-col {
    text-align: center;
    color: #065f46;
    font-weight: 600;
}

.pridus-col.highlight {
    background: #d1fae5;
}

.roi-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #e5e7eb 100%);
}

.roi-calculator {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 20px;
    margin-bottom: 40px;
    align-items: end;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.result-card {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.result-card.traditional-cost {
    background: #fee2e2;
    border: 2px solid #fecaca;
}

.result-card.pridus-cost {
    background: #d1fae5;
    border: 2px solid #a7f3d0;
}

.result-card.savings {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #fcd34d;
}

.result-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #1f2937;
}

.result-amount {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.savings-amount {
    font-size: 2.5rem;
    color: #92400e;
}

.result-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.why-cta-section {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    padding: 80px 0;
}

.why-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.why-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1f2937;
}

.why-cta-content p {
    font-size: 1.3rem;
    color: #4b5563;
    margin-bottom: 30px;
}

/* Updated Home Page Styles */
.value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tier-number {
    background: #1f2937;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.tier-number.tier-2 {
    background: #10b981;
}

.service-card .service-price span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 400;
}

.service-desc {
    min-height: 80px;
    margin: 15px 0;
}

.best-for-badge {
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4b5563;
    margin: 15px 0;
    display: inline-block;
}

.savings-highlight {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
}

.savings-highlight h3 {
    font-size: 2rem;
    color: #92400e;
    margin-bottom: 10px;
}

.savings-highlight p {
    font-size: 1.2rem;
    color: #78350f;
}

.best-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 10;
}

@media (max-width: 768px) {
    .calculator-inputs {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .pain-points-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
}
