* {
    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 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #059669, #0d9488);
    color: white;
}

.nav {
    padding: 1rem 0;
}

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

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

.logo-icon {
    width: 2rem;
    height: 2rem;
}

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

.btn-login {
    background: white;
    color: #059669;
    padding: 0.5rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #f0fdf4;
}

.hero-content {
    text-align: center;
    padding: 5rem 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    color: #a7f3d0;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1fae5;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background: white;
    color: #059669;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: bold;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #34d399;
}

.hero-features {
    margin-top: 1rem;
    color: #a7f3d0;
}

/* Trust Bar */
.trust-bar {
    background: #ecfdf5;
    padding: 2rem 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    color: #047857;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.trust-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
}

.calculator-box {
    max-width: 80rem;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #f9fafb, #ecfdf5);
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 3rem;
}

.business-type-section {
    margin-bottom: 2rem;
}

.input-label {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 1rem;
}

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

.business-type-card {
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e5e7eb;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.business-type-card:hover {
    border-color: #6ee7b7;
}

.business-type-card.active {
    border-color: #10b981;
    background: #ecfdf5;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.business-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    color: #9ca3af;
}

.business-type-card.active .business-icon {
    color: #059669;
}

.business-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
}

.business-description {
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Sliders */
.sliders-section {
    margin-bottom: 2rem;
}

.slider-group {
    margin-bottom: 2rem;
}

.slider-value {
    color: #059669;
    font-weight: bold;
}

.slider {
    width: 100%;
    height: 0.75rem;
    background: #e5e7eb;
    border-radius: 0.5rem;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.5rem;
    height: 1.5rem;
    background: #059669;
    border-radius: 50%;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 1.5rem;
    height: 1.5rem;
    background: #059669;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Results */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.savings-card {
    background: white;
    border: 2px solid #a7f3d0;
}

.price-card {
    background: linear-gradient(to bottom right, #059669, #0d9488);
    color: white;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-icon-wrapper {
    padding: 0.75rem;
    border-radius: 0.5rem;
}

.savings-icon {
    background: #d1fae5;
}

.price-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #059669;
}

.price-card .card-icon {
    color: white;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.savings-card .card-title {
    color: #111827;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.result-label {
    color: #6b7280;
}

.price-card .result-label {
    color: #a7f3d0;
}

.result-value {
    font-size: 1.5rem;
    font-weight: bold;
}

.savings-value {
    color: #059669;
}

.result-value-large {
    font-size: 1.875rem;
    font-weight: bold;
}

.price-breakdown {
    text-align: right;
}

.old-price {
    font-size: 1.125rem;
    text-decoration: line-through;
    color: #a7f3d0;
}

.result-divider {
    border-top: 1px solid #e5e7eb;
    padding-top: 0.75rem;
}

.price-card .result-divider {
    border-color: rgba(255, 255, 255, 0.2);
}

.result-hours {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.hours-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.discount-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
}

/* ROI Highlight */
.roi-highlight {
    background: linear-gradient(to right, #10b981, #14b8a6);
    border-radius: 0.75rem;
    padding: 1.5rem;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.roi-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.roi-description {
    color: #d1fae5;
    font-size: 1.125rem;
}

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

.btn-cta {
    display: inline-block;
    background: #111827;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-cta:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f9fafb;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    background: #d1fae5;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: #059669;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #6b7280;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.pricing-card:hover {
    border-color: #6ee7b7;
}

.pricing-card.featured {
    background: linear-gradient(to bottom right, #059669, #0d9488);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #111827;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-price-section {
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

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

.pricing-card.featured .pricing-period {
    color: #a7f3d0;
}

.pricing-extra {
    font-size: 1.125rem;
    color: #6b7280;
}

.pricing-card.featured .pricing-extra {
    color: #a7f3d0;
}

.pricing-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.pricing-card.featured .pricing-note {
    color: #d1fae5;
}

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

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #059669;
}

.pricing-card.featured .feature-check {
    color: #d1fae5;
}

.pricing-feature span {
    color: #374151;
}

.pricing-card.featured .pricing-feature span {
    color: white;
}

.btn-pricing {
    display: block;
    width: 100%;
    background: #111827;
    color: white;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: #1f2937;
}

.btn-pricing.featured {
    background: white;
    color: #059669;
}

.btn-pricing.featured:hover {
    background: #f0fdf4;
}

.pricing-note-footer {
    text-align: center;
    color: #6b7280;
    margin-top: 2rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(to bottom right, #059669, #0d9488);
    color: white;
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.final-cta-description {
    font-size: 1.25rem;
    color: #d1fae5;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.btn-final-cta {
    display: inline-block;
    background: white;
    color: #059669;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-final-cta:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.final-cta-note {
    margin-top: 1.5rem;
    color: #a7f3d0;
}

/* Footer */
.footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 0;
}

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

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

.footer-logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #10b981;
}

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

.footer-description {
    color: #6b7280;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #34d399;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #6b7280;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .calculator-box {
        padding: 1.5rem;
    }

    .business-type-grid {
        grid-template-columns: 1fr;
    }

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

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

    .final-cta-title {
        font-size: 1.75rem;
    }
}
