:root {
    --primary: #2c5f6f;
    --secondary: #76b852;
    --teal: #4a9a9d;
    --dark: #1a3f4a;
    --light: #f5f9fa;
    --white: #fff;
    --text: #2c3e50;
    --accent: #8dc63f
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Poppins, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    font-size: 16px
}

h1,
h2,
h3 {
    color: var(--dark);
    line-height: 1.2;
    font-weight: 700
}

a {
    text-decoration: none;
    transition: all .3s ease
}

ul {
    list-style: none
}

img {
    max-width: 100%;
    height: auto
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all .3s ease
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 154, 157, .3)
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 154, 157, .4)
}

.btn-white {
    background: #fff;
    color: var(--teal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1)
}

.btn-white:hover {
    background: var(--light);
    transform: translateY(-2px)
}

.section-padding {
    padding: 60px 0
}

header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 2px solid var(--light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px
}

.logo-name {
    color: var(--primary)
}

.logo-services {
    color: var(--teal);
    font-weight: 600
}

.tagline {
    font-size: .75rem;
    font-style: italic;
    color: var(--primary);
    margin-top: -3px
}

.contact-header {
    font-weight: 700;
    color: var(--teal);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap
}

.hero {
    background: linear-gradient(135deg, #e8f4f5 0, #fff 50%, #f0f9f0 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(118, 184, 82, .15), transparent);
    border-radius: 50%
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(74, 154, 157, .15), transparent);
    border-radius: 50%
}

.hero .container {
    position: relative;
    z-index: 1
}

.sap-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.1rem
}

.sap-logo {
    height: 90px;
    width: auto
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    max-width: 900px;
    margin-inline: auto;
    font-weight: 800;
    color: var(--primary)
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 15px
}

.hero p {
    font-size: 1rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-inline: auto;
    color: var(--text)
}

.hero-cta {
    margin-top: 25px
}

.tax-benefit {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(118, 184, 82, .1);
    padding: 12px 25px;
    border-radius: 50px;
    max-width: 450px;
    margin-inline: auto
}

.pour-qui {
    background: var(--primary);
    color: #fff;
    padding: 50px 0
}

.pour-qui h2 {
    color: #fff;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    font-style: italic
}

.pour-qui-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto
}

.pour-qui-item {
    text-align: center;
    transition: transform .3s ease
}

.pour-qui-item:hover {
    transform: translateY(-8px)
}

.pour-qui-icon {
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    margin-bottom: 12px
}

.pour-qui-item h3 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700
}

.services {
    background: var(--white)
}

.services h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--primary)
}

.services-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 50px;
    max-width: 700px;
    margin-inline: auto
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px
}

.service-card {
    background: var(--light);
    padding: 30px 25px;
    border-radius: 20px;
    border: 3px solid var(--white);
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--teal), var(--secondary))
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(74, 154, 157, .2);
    border-color: var(--teal)
}

.service-card .tag {
    font-size: .75rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary);
    display: inline-block;
    background: rgba(74, 154, 157, .15);
    padding: 5px 12px;
    border-radius: 20px
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary)
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text)
}

.price-box {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px dashed var(--teal);
    text-align: center
}

.price-label {
    font-size: .85rem;
    color: var(--text);
    font-weight: 600;
    display: block;
    margin-bottom: 8px
}

.price-strike {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 6px
}

.price-final {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 800;
    display: block;
    margin: 12px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .1)
}

.price-after {
    font-size: .9rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase
}

.testimonials {
    display: none;
    background: linear-gradient(135deg, var(--light) 0, var(--white) 100%)
}

.testimonials h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary)
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--teal);
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
    transition: all .3s ease
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .12)
}

.testimonial-stars {
    color: #f39c12;
    font-size: 1.2rem;
    margin-bottom: 15px
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text);
    font-size: .95rem
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem
}

.testimonial-meta {
    font-size: .9rem;
    color: #7f8c8d;
    margin-top: 4px
}

.steps {
    background: var(--white)
}

.steps h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px
}

.step {
    text-align: center;
    position: relative;
    transition: transform .3s ease;
    padding: 25px 15px;
    background: var(--light);
    border-radius: 20px
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(74, 154, 157, .15)
}

.step-num {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(74, 154, 157, .3)
}

.step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary)
}

.step p {
    color: var(--text);
    line-height: 1.5;
    font-size: .95rem
}

.faq {
    background: var(--light)
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: var(--primary)
}

.faq-item {
    background: #fff;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05)
}

.faq-item:hover {
    border-color: var(--teal);
    box-shadow: 0 5px 20px rgba(74, 154, 157, .15)
}

.faq-item[open] {
    background: var(--white);
    border-color: var(--teal);
    box-shadow: 0 5px 20px rgba(74, 154, 157, .2)
}

.faq-item summary {
    font-weight: 700;
    list-style: none;
    position: relative;
    padding-right: 30px;
    font-size: 1.05rem;
    cursor: pointer;
    color: var(--primary)
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
    transition: transform .3s ease
}

.faq-item[open] summary::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg)
}

.faq-item p {
    margin-top: 15px;
    font-size: .95rem;
    color: var(--text);
    line-height: 1.7;
    padding-left: 8px
}

.contact-section {
    text-align: center;
    background: var(--white)
}

.contact-box {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(74, 154, 157, .3)
}

.contact-box h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px
}

.contact-box>p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #fff
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    align-items: center
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff
}

.contact-item a {
    color: #fff
}

.contact-item a:hover {
    color: var(--accent)
}

.contact-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--teal);
    padding: 12px;
    text-align: center;
    z-index: 99;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, .2);
    transform: translateY(100%);
    transition: transform .3s ease
}

.sticky-cta.visible {
    transform: translateY(0)
}

.sticky-cta .btn {
    padding: 12px 24px;
    font-size: .95rem
}

footer {
    background: var(--dark);
    color: #fff;
    padding: 50px 0 25px;
    font-size: .9rem
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px
}

.footer-tagline {
    font-style: italic;
    color: var(--accent);
    margin-bottom: 15px
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem
}

.footer-grid ul li {
    margin-bottom: 10px;
    opacity: .9;
    font-size: .9rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 40px;
    padding-top: 25px;
    text-align: center;
    opacity: .8
}

@media (max-width:768px) {
    body {
        font-size: 15px
    }

    header {
        padding: 12px 0
    }

    .logo {
        font-size: 1.3rem
    }

    .tagline {
        font-size: .7rem;
        display: none
    }

    .contact-header {
        font-size: .95rem
    }

    .hero {
        padding: 60px 0 40px
    }

    .hero h1 {
        font-size: 1.8rem
    }

    .hero-subtitle {
        font-size: 1rem
    }

    .hero p {
        font-size: .95rem
    }

    .sap-badge {
        font-size: .75rem;
        padding: 8px 16px;
        gap: 8px
    }

    .sap-logo {
        height: 60px
    }

    .tax-benefit {
        font-size: .9rem;
        padding: 10px 20px
    }

    .section-padding {
        padding: 40px 0
    }

    .pour-qui {
        padding: 40px 0
    }

    .pour-qui h2 {
        font-size: 1.6rem;
        margin-bottom: 30px
    }

    .pour-qui-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }

    .pour-qui-icon {
        font-size: 2.5rem
    }

    .pour-qui-item h3 {
        font-size: 1rem
    }

    .services h2,
    .steps h2,
    .faq h2,
    .testimonials h2 {
        font-size: 1.8rem
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        padding: 25px 20px
    }

    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .testimonial-card {
        padding: 25px
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .contact-box {
        padding: 35px 20px
    }

    .contact-box h2 {
        font-size: 1.8rem
    }

    .contact-btns {
        flex-direction: column;
        align-items: stretch
    }

    .contact-btns .btn {
        width: 100%
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .sticky-cta {
        display: block
    }

    body {
        padding-bottom: 65px
    }
}

@media (min-width:769px) {
    .sticky-cta {
        display: none
    }
}

@media (min-width:769px) and (max-width:1024px) {
    .hero h1 {
        font-size: 2.2rem
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Header Nav Styles */
.header-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--teal);
}

/* Mobile Navigation Overlay */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .contact-header {
        display: none !important;
    }

    .nav-content {
        padding: 5px 20px;
    }

    .header-nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        z-index: 1000;
        padding: 100px 30px;
        text-align: center;
    }

    .header-nav.active ul {
        flex-direction: column;
        gap: 30px;
    }

    .header-nav.active a {
        font-size: 1.5rem;
    }

    .header-nav.active .mobile-only {
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px dashed rgba(74, 154, 157, 0.2);
    }

    .header-nav.active .nav-phone {
        color: var(--teal);
        font-weight: 800;
    }
}

@media (max-width: 768px) {
    header {
        margin-bottom: 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .detailed-card {
        padding: 25px 20px;
    }

    .detailed-grid {
        gap: 20px;
    }
}

/* Fix for horizontal scroll and general refinements */
body {
    overflow-x: hidden;
}

.container {
    width: 100%;
}

.mobile-menu-open {
    overflow: hidden;
}