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

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hidden {
    display: none;
}

/* Navigation Styles */
.nav {
    background-color: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo-wrapper {
    display: flex;
    align-items: center;
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    width: 2.5rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 2.5rem;
    height: 3.25rem;
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

.nav-menu-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link-active {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.nav-links {
    color: #4b5563;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links:hover {
    color: #2563eb;
}

.nav-button {
    background-color: #2563eb;
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #1d4ed8;
}

.mobile-menu-btn-wrapper {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    color: #6b7280;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.mobile-menu-btn:hover {
    color: #4b5563;
}

.mobile-menu-btn:focus {
    outline: none;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
}

.mobile-menu-content {
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link-active {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    color: #2563eb;
    background-color: #eff6ff;
    text-decoration: none;
}

.mobile-link {
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 700;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-link:hover {
    color: #2563eb;
    background-color: #f9fafb;
}

.mobile-cta-wrapper {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
}

.mobile-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.mobile-cta-btn:hover {
    background-color: #1d4ed8;
}

/* Page Header */
.page-header {
    background: linear-gradient(to bottom right, #dbeafe, #bfdbfe);
    padding: 5rem 0;
}

.page-header-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.page-header-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.page-header-description {
    margin-top: 1rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: #6b7280;
}

/* Services Overview Section */
.services-overview-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.services-overview-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.services-overview-label {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-overview-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
}

.services-overview-subtitle {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.25rem;
    color: #6b7280;
    margin-left: auto;
    margin-right: auto;
}

.services-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-overview-card {
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s;
}

.service-overview-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-consulting {
    grid-column: span 1;
}

.service-overview-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
}

.service-overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.service-consulting-tagline {
    color: #6b7280;
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-overview-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-consulting-subtitle {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.service-overview-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.service-overview-item {
    display: flex;
    align-items: flex-start;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: #2563eb;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.service-consulting-why {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-consulting-why-title {
    font-weight: 700;
    font-size: 1.125rem;
    color: #111827;
}

.service-consulting-cta {
    margin: 0 auto;
    margin-top: 1.5rem;
}

.consulting-cta-link {
    color: #1e40af;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 0.75rem;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    transition: all 0.5s;
}

.service-consulting:hover .consulting-cta-link {
    background-color: #3b82f6;
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.pricing-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.pricing-label {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
}

.pricing-subtitle {
    margin-top: 1rem;
    max-width: 42rem;
    font-size: 1.25rem;
    color: #6b7280;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid #f3f4f6;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    background-color: #2563eb;
    border: 2px solid #2563eb;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fbbf24;
    color: #111827;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    border-bottom-left-radius: 0.5rem;
}

.pricing-card-content {
    padding: 2rem 2rem;
}

.pricing-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.pricing-card-title-featured {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.pricing-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
}

.pricing-card-icon-featured {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.pricing-card-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.pricing-card-description-featured {
    color: #bfdbfe;
    margin-bottom: 1.5rem;
}

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

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
}

.price-amount-featured {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.price-term {
    color: #6b7280;
    margin-left: 0.5rem;
}

.price-term-featured {
    color: #bfdbfe;
    margin-left: 0.5rem;
}

.pricing-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
}

.pricing-feature-featured {
    display: flex;
    align-items: flex-start;
    color: #ffffff;
}

.feature-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-icon-featured {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-feature span {
    color: #4b5563;
}

.pricing-feature-featured span {
    color: #ffffff;
}

.pricing-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563eb;
    color: #2563eb;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.pricing-card-btn:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.pricing-card-btn-featured {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background-color: #ffffff;
    color: #2563eb;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-card-btn-featured:hover {
    background-color: #f3f4f6;
}

/* Pricing Note */
.pricing-note {
    margin-top: 3rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    background-color: #eff6ff;
    border: 2px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 2rem;
}

.pricing-note-content {
    display: flex;
    align-items: flex-start;
}

.pricing-note-icon {
    flex-shrink: 0;
}

.icon-info {
    width: 1.5rem;
    height: 1.5rem;
    color: #2563eb;
}

.pricing-note-text {
    margin-left: 1rem;
}

.pricing-note-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.pricing-note-description {
    color: #4b5563;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.faq-label {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-title {
    margin-top: 0.5rem;
    font-size: 1.875rem;
    line-height: 2rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #1e3a8a;
}

.cta-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.cta-btn {
    background-color: #ffffff;
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.cta-btn:hover {
    background-color: #f3f4f6;
}

/* Footer */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* .footer-brand {
} */

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

.footer-logo-icon {
    width: 2.5rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    width: 2.5rem;
    height: 3.25rem;
}

.footer-logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    color: #111827;
}

.footer-brand-text {
    color: #6b7280;
    font-size: 0.875rem;
}

/* .footer-column {
} */

.footer-heading {
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4b5563;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #2563eb;
}

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

.footer-icon {
    width: 1rem;
    height: 1rem;
}

.cf_email {
    color: #4b5563;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

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

.footer-social-link:hover {
    color: #2563eb;
}

.footer-socials-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive Styles */

/* Tablet (640px and up) */
@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .page-header-title {
        font-size: 3rem;
    }
    
    .services-overview-container {
        padding: 0 1.5rem;
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-consulting {
        grid-column: span 2;
    }
    
    .pricing-container {
        padding: 0 1.5rem;
    }
    
    .faq-container {
        padding: 0 1.5rem;
    }
    
    .cta-btn-wrapper {
        flex-direction: row;
    }
    
    .mobile-menu-content {
        padding: 0.5rem 0.75rem 0.75rem 0.75rem;
    }
}

/* Desktop (768px and up) */
@media (min-width: 768px) {
    .nav-menu-desktop {
        display: flex;
    }
    
    .mobile-menu-btn-wrapper {
        display: none;
    }
    
    .page-header-title {
        font-size: 3.75rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-socials {
        margin-top: 0;
    }
}

/* Large Desktop (1024px and up) */
@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .page-header-container {
        padding: 0 2rem;
    }
    
    .services-overview-container {
        padding: 0 2rem;
    }
    
    .services-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-consulting {
        grid-column: span 1;
    }
    
    .services-overview-title {
        font-size: 2.25rem;
    }
    
    .pricing-container {
        padding: 0 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card-featured {
        transform: scale(1.05);
    }
    
    .pricing-title {
        font-size: 2.25rem;
    }
    
    .faq-container {
        padding: 0 2rem;
    }
    
    .faq-title {
        font-size: 2.25rem;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
}

/* Extra Large Desktop (1280px and up) */
@media (min-width: 1280px) {
    .page-header-title {
        font-size: 4.5rem;
    }
}