/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Crimson Text', serif;
    background-color: rgb(251, 248, 245);
    color: rgb(62, 55, 50);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(251, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(62, 55, 50, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    text-decoration: none;
}

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

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

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgb(62, 55, 50);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgb(62, 55, 50);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: rgb(255, 73, 0);
}

.cta-button {
    background-color: rgb(255, 73, 0);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgb(230, 65, 0);
    transform: translateY(-1px);
}

/* Main content */
main {
    margin-top: 80px;
    padding: 0 2rem;
}

/* Hero section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: rgb(255, 73, 0);
    font-weight: 600;
}

.stats-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: rgb(255, 73, 0);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.feature-icon {
    color: rgb(34, 197, 94);
    font-weight: bold;
}

.feature-text {
    font-size: 0.95rem;
}

.hero-cta {
    background-color: rgb(255, 73, 0);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: rgb(230, 65, 0);
    transform: translateY(-2px);
}

.hero-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatars {
    display: flex;
    gap: -0.5rem;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -0.5rem;
}

.avatar:first-child {
    margin-left: 0;
}

.testimonial-rating .stars {
    color: rgb(255, 193, 7);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
}

/* Process section */
.process {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.process-step {
    margin-bottom: 4rem;
    text-align: center;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgb(255, 73, 0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.step-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.step-example, .step-visual {
    max-width: 600px;
    margin: 0 auto;
}

.form-preview {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-field {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(62, 55, 50);
}

.form-field input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgb(209, 213, 219);
    border-radius: 8px;
    font-family: inherit;
    background-color: rgb(249, 250, 251);
}

.ai-dashboard {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.dashboard-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.dashboard-badge {
    background-color: rgb(34, 197, 94);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dashboard-metrics {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: rgb(255, 73, 0);
}

.metric-label {
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
}

.email-preview {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.email-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgb(229, 231, 235);
}

.email-subject {
    font-weight: 600;
}

.email-time {
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
}

.email-content p {
    margin-bottom: 0.5rem;
}

/* Pricing section */
.pricing {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.pricing-visual {
    max-width: 500px;
    margin: 0 auto;
}

.pricing-calculator {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calculator-input {
    margin-bottom: 2rem;
}

.calculator-input label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
}

.slider {
    width: 100%;
    margin-bottom: 1rem;
}

.slider-value {
    font-weight: 600;
    color: rgb(255, 73, 0);
}

.calculator-result {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgb(229, 231, 235);
}

.result-label {
    display: block;
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 600;
    color: rgb(255, 73, 0);
}

/* Features overview section */
.features-overview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3rem;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-switch {
    position: relative;
}

.toggle-input {
    display: none;
}

.toggle-label-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-badge {
    background-color: rgb(34, 197, 94);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: left;
}

.pricing-card.featured {
    border: 2px solid rgb(255, 73, 0);
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(255, 73, 0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.card-subtitle {
    color: rgb(107, 114, 128);
    font-size: 0.9rem;
}

.card-features {
    margin-bottom: 2rem;
}

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

.feature .feature-icon {
    color: rgb(34, 197, 94);
    font-weight: bold;
}

.card-price {
    margin-bottom: 2rem;
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 600;
    color: rgb(255, 73, 0);
}

.price-unit {
    color: rgb(107, 114, 128);
    font-size: 0.9rem;
}

.card-cta {
    display: block;
    background-color: rgb(255, 73, 0);
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.card-cta:hover {
    background-color: rgb(230, 65, 0);
}

.card-guarantee {
    text-align: center;
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
}

.pricing-note {
    color: rgb(107, 114, 128);
    font-size: 0.9rem;
}

/* Testimonials section */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3rem;
}

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

.testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-title {
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
}

/* FAQ section */
.faq {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    margin-bottom: 2rem;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 1.2rem;
    color: rgb(255, 73, 0);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-contact {
    text-align: center;
    color: rgb(107, 114, 128);
}

.faq-contact a {
    color: rgb(255, 73, 0);
    text-decoration: none;
}

/* Final CTA section */
.final-cta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.final-cta-button {
    background-color: rgb(255, 73, 0);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 3rem;
    transition: all 0.3s ease;
}

.final-cta-button:hover {
    background-color: rgb(230, 65, 0);
    transform: translateY(-2px);
}

.final-cta-testimonials {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* Footer */
.footer {
    background-color: rgb(62, 55, 50);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    margin-bottom: 1rem;
}

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

.footer-logo .logo-text {
    color: white;
}

.footer-tagline {
    color: rgb(209, 213, 219);
    font-size: 0.9rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: rgb(209, 213, 219);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: rgb(255, 73, 0);
}

.support-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgb(209, 213, 219);
    font-size: 0.9rem;
}

.contact-item {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-label {
    font-weight: 600;
    min-width: 60px;
}

.contact-item a {
    color: rgb(209, 213, 219);
    text-decoration: none;
}

.contact-item a:hover {
    color: rgb(255, 73, 0);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgb(209, 213, 219);
    font-size: 0.9rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    main {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .step-title, .pricing-title, .features-title, .testimonials-title, .faq-title, .final-cta-title {
        font-size: 2rem;
    }
    
    .hero-features, .final-cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .step-title, .pricing-title, .features-title, .testimonials-title, .faq-title, .final-cta-title {
        font-size: 1.75rem;
    }
}

/* Additional styles for new page components */

/* Page hero styles */
.page-hero {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 0;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-subtitle {
    font-size: 1.2rem;
    color: rgb(107, 114, 128);
    line-height: 1.6;
}

/* Legal page styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-container {
    background-color: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: rgb(62, 55, 50);
}

.legal-updated {
    color: rgb(107, 114, 128);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content {
    line-height: 1.7;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(62, 55, 50);
}

.legal-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    color: rgb(62, 55, 50);
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: rgb(251, 248, 245);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: rgb(255, 73, 0);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Pricing calculator advanced styles */
.pricing-calculator-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
}

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

.calculator-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 3rem;
}

.pricing-calculator-advanced {
    background-color: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.calculator-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.control-group {
    text-align: left;
}

.control-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(62, 55, 50);
}

.quality-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgb(209, 213, 219);
    border-radius: 8px;
    font-family: inherit;
    background-color: white;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgb(229, 231, 235);
}

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

/* Contact form styles */
.contact-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.contact-steps {
    margin-bottom: 3rem;
}

.contact-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-step .step-number {
    background-color: rgb(255, 73, 0);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.contact-step .step-content h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-guarantees {
    margin-bottom: 2rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.guarantee-icon {
    color: rgb(34, 197, 94);
    font-weight: bold;
}

.contact-form-container {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: rgb(107, 114, 128);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgb(62, 55, 50);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid rgb(209, 213, 219);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(255, 73, 0);
    box-shadow: 0 0 0 3px rgba(255, 73, 0, 0.1);
}

.form-submit-btn {
    background-color: rgb(255, 73, 0);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: rgb(230, 65, 0);
}

.form-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-disclaimer {
    font-size: 0.9rem;
    color: rgb(107, 114, 128);
    text-align: center;
}

.form-disclaimer a {
    color: rgb(255, 73, 0);
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgb(34, 197, 94);
}

.form-success p {
    color: rgb(107, 114, 128);
    margin-bottom: 2rem;
}

.success-cta {
    background-color: rgb(255, 73, 0);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.success-cta:hover {
    background-color: rgb(230, 65, 0);
}

/* Contact alternative styles */
.contact-alternative {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 0;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.method-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-method p {
    color: rgb(107, 114, 128);
    margin-bottom: 1rem;
}

.method-link {
    color: rgb(255, 73, 0);
    text-decoration: none;
    font-weight: 600;
}

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

.method-address {
    font-style: normal;
    color: rgb(107, 114, 128);
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .calculator-controls {
        grid-template-columns: 1fr;
    }
    
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .legal-container {
        padding: 2rem;
    }
}

/* Animation classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.feature-card,
.pricing-card,
.testimonial-card,
.process-step {
  
    transform: translateY(20px);
}

/* Navbar scroll effect */
.navbar.scrolled {
    background-color: rgba(251, 248, 245, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
