.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-content-narrow {
    max-width: 500px;
}

.hero-text-subtitle-styled {
    letter-spacing: 0.5px;
    margin-top: 12px;
    display: inline-block;
}

.hero-description {
    max-width: 600px;
    margin-bottom: 40px;
    color: var(--raivon-blue);
    line-height: 1.65;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background-color: transparent;
    color: var(--raivon-blue);
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--raivon-blue);
}

.primary-btn:hover,
.primary-btn:focus {
    background-color: rgba(0, 45, 156, 0.08);
    color: var(--raivon-blue);
    box-shadow: 0 2px 8px rgba(0, 45, 156, 0.12);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--raivon-orange);
    padding: 15px 30px;
    border-radius: 8px;

    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid var(--raivon-orange);
    margin-left: 10px;
}

.secondary-btn:hover,
.secondary-btn:focus {
    background-color: rgba(255, 107, 0, 0.08);
    color: var(--raivon-orange);
    border-color: var(--raivon-orange);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.12);
    transform: translateY(-2px);
}

.hero-illustration {
    flex: 1;
    max-width: 750px;
}

.hero-illustration img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    .hero-content {
        align-items: center !important;
        text-align: center !important;
    }
    .hero-buttons {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .nav-menu {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 30px 12px !important;
    }

    .hero-title {
        margin-bottom: 12px;
    }

    .hero-description {
        margin-bottom: 20px;
    }

    .hero-illustration {
        display: none;
    }

    .who-we-help {
        padding: 35px 0;
    }

    .who-headline {
        margin-bottom: 15px;
    }

    .who-sub-headline {
        margin-bottom: 20px;
    }

    .who-reassurance {
        margin-bottom: 15px;
    }

    .cta-button-alt {
        padding: 10px 18px;
    }

    .section-title {
        margin-bottom: 8px;
    }

    .section-subtitle {
        margin-bottom: 12px;
    }

    .help-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 30px auto 0;
    }



    .service-card {
        padding: 30px 25px;
    }



    .experts-section {
        padding: 30px 20px;
    }

    .experts-intro {
        margin-bottom: 30px;
    }

    .experts-intro h2 {
        margin-bottom: 15px;
    }


    .experts-benefits li {
        margin-bottom: 6px;
    }

    .meet-guides h3 {
        margin-bottom: 25px;
    }

    .guide {
        padding: 20px;
    }

    .guide-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .guide-photo {
        margin-right: 0;
        margin-bottom: 15px;
        width: 80px;
        height: 80px;
    }


    .experts-cta {
        padding: 30px 20px;
    }

    .experts-cta p {}

    .cta-button-experts {
        width: 100%;
        padding: 15px 20px;
    }

    .differentiators {
        padding: 40px 20px;
    }

    .diff-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .diff-card {
        padding: 25px 20px;
    }

    .testimonials {
        padding: 40px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 30px;
    }



    .testimonials .section-subtitle {

        margin-bottom: 25px;
    }

    .testimonial-text {

        max-width: 100%;
    }

    .cta-strip {
        padding: 40px 20px;
    }

    .cta-strip h2 {}

    .cta-strip p {}
}

.who-we-help {
    padding: 80px 0;
}

.who-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 12px;
    box-sizing: border-box;
}

.who-content {
    margin: 0 auto;
    text-align: center;
}

.who-headline {
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.who-sub-headline {
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


.who-reassurance {
    margin-top: 0;
    margin-bottom: 24px;
    font-style: italic;
}

.cta-button-alt {
    background-color: var(--raivon-orange);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    margin-top: 0;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    min-width: 260px;
}

.cta-button-alt:hover {
    background-color: var(--raivon-orange);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .who-headline {

        margin-bottom: 24px;
    }

    .who-sub-headline {

        margin-bottom: 32px;
    }

    .who-reassurance {

        margin-bottom: 20px;
    }

    .cta-button-alt {

        padding: 14px 24px;
    }
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    margin-bottom: 10px;

}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 20px;

}

.help-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.help-card {
    background: #f2f4f8;
    border-radius: 12px;
    padding: 44px 22px 38px 22px;
    box-shadow: 0 2px 8px rgba(0, 51, 204, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    border: none;
    position: relative;
    cursor: pointer;
}

.help-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.card-icon {

    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.help-card:hover .card-icon,
.help-card:focus .card-icon {

    transform: scale(1.03);
}

.icon-accent {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--raivon-orange);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);
    opacity: 0.85;
    transition: box-shadow 0.2s, transform 0.2s;
}

.help-card:hover .icon-accent,
.help-card:focus .icon-accent {
    box-shadow: 0 0 6px var(--raivon-orange);
    transform: translateX(-50%) scale(1.08);
}

.icon-accent-line {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--raivon-orange);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    bottom: -13px;
    transform: translateX(-50%);
    opacity: 0.85;
    transition: box-shadow 0.2s, transform 0.2s;
}

.help-card:hover .icon-accent-line,
.help-card:focus .icon-accent-line {
    box-shadow: 0 0 6px var(--raivon-orange);
    transform: translateX(-50%) scale(1.08);
}

.help-card h3 {
    margin: 0;
    transition: color 0.2s ease;
}


@media (max-width: 1024px) {
    .help-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .help-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

.what-we-offer {
    padding: 60px 20px 80px;
    position: relative;
}

@media (max-width: 768px) {
    .what-we-offer {
        padding: 20px 20px 30px !important;
    }

    .section-title {
        margin-bottom: 5px !important;
    }

    .section-subtitle {
        margin-bottom: 5px !important;
    }

    .service-cards {
        margin-top: 15px !important;
    }
}



.tag-padding {
    padding: 12px 28px;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 42px 35px;
    box-shadow: 0 4px 20px rgba(0, 56, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 400px;
    position: relative;
}

.service-card .service-icon {

    margin-bottom: 20px;
    background: rgba(0, 30, 148, 0.08);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.service-card h3 {



    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.service-summary {


    margin-bottom: 12px;

}

.service-details {

    margin-bottom: 24px;

    opacity: 1;
    flex: 1 1 auto;
}

.service-additional {
    margin-top: 35px;


}

.text-link {
    color: var(--raivon-blue);

    margin-left: 6px;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.text-link:hover,
.text-link:focus {
    color: var(--raivon-orange);
    border-bottom: 1px solid var(--raivon-orange);
}

.text-link i {

    margin-left: 6px;
    transition: transform 0.2s ease;
}

.text-link:hover i,
.text-link:focus i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .service-cards {
        grid-template-columns: 1fr;
        grid-template-areas:
            "flagship"
            "service2"
            "service3";
        max-width: 650px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .service-cards {
        max-width: 500px;
    }

    .service-card {
        padding: 40px 30px;
    }


}

.how-it-works {
    padding: 100px 20px;
    background-color: #fff;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 60px;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--raivon-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;


    margin: 0 auto 20px;
}

.step-icon {

    color: var(--raivon-orange);
    margin-bottom: 20px;
}

.process-step h3 {
    color: var(--raivon-blue);


    margin-bottom: 15px;
}

.process-step p {
    color: var(--raivon-blue);


}

.process-connector {
    flex: 0 0 100px;
    height: 2px;
    background-color: var(--raivon-blue);
    margin-top: 40px;
    position: relative;
}

.process-connector::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--raivon-blue);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin-top: 0;
    }

    .process-connector::before {
        right: 50%;
        top: 100%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .process-step {
        max-width: 100%;
    }
}

.why-different {
    padding: 100px 20px;
    background-color: #f8f9ff;
    position: relative;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pillar {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 51, 204, 0.1);
    transition: transform 0.3s ease;
}

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

.pillar-icon {

    color: var(--raivon-blue);
    margin-bottom: 20px;
}

.pillar h3 {
    color: var(--raivon-blue);


    margin-bottom: 15px;
}

.pillar p {
    color: var(--raivon-blue);


}

@media (max-width: 1024px) {
    .pillars {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: 60px auto 0;
    }
}

@media (max-width: 768px) {
    .pillars {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.cta-strip {
    padding: 100px 20px;
    background-color: var(--raivon-blue);
    color: #fff;
    text-align: center;
}

.cta-strip h2 {


    margin-bottom: 20px;
}

.cta-strip p {

    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background-color: var(--raivon-orange);
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;


    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #fff;
    color: var(--raivon-orange);
    transform: translateY(-2px);
}

.footer {
    padding: 60px 20px;
    background-color: #fff;
    border-top: 1px solid rgba(0, 51, 204, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--raivon-blue);


}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-link {
    color: var(--raivon-blue);

    transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--raivon-orange);
    text-decoration: underline;
}

.footer-right {
    text-align: right;
}

.social-link {
    color: var(--raivon-blue);

    margin-bottom: 15px;
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover,
.social-link:focus {
    color: var(--raivon-orange);
    transform: scale(1.03);
}

.copyright {
    color: var(--raivon-blue);

    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

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

    .cta-strip h2 {}

    .cta-strip p {}
}

/* INTERACTIVE ELEMENTS ONLY */
.help-card[tabindex],
.help-card[role="button"],
.help-card.interactive {
    cursor: pointer;
}

.help-card[tabindex]:hover,
.help-card[tabindex]:focus,
.help-card[role="button"]:hover,
.help-card[role="button"]:focus,
.help-card.interactive:hover,
.help-card.interactive:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.help-card[tabindex]:hover .card-icon,
.help-card[tabindex]:focus .card-icon,
.help-card[role="button"]:hover .card-icon,
.help-card[role="button"]:focus .card-icon,
.help-card.interactive:hover .card-icon,
.help-card.interactive:focus .card-icon {
    color: var(--raivon-orange);
    transform: scale(1.03);
}

.help-card[tabindex]:hover .icon-accent,
.help-card[tabindex]:focus .icon-accent,
.help-card[role="button"]:hover .icon-accent,
.help-card[role="button"]:focus .icon-accent,
.help-card.interactive:hover .icon-accent,
.help-card.interactive:focus .icon-accent {
    box-shadow: 0 0 6px var(--raivon-orange);
    transform: translateX(-50%) scale(1.08);
}

.help-card[tabindex]:hover h3,
.help-card[tabindex]:focus h3,
.help-card[role="button"]:hover h3,
.help-card[role="button"]:focus h3,
.help-card.interactive:hover h3,
.help-card.interactive:focus h3 {
    color: var(--raivon-orange);
}

.service-card,
.service-btn,
.primary-btn,
.secondary-btn,
.nav-item,
.footer-link,
.social-link {
    cursor: pointer;
}

.service-card:hover,
.service-card:focus {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 56, 255, 0.1);
}

.service-card:hover .service-icon,
.service-card:focus .service-icon {
    color: var(--raivon-orange);
    background: rgba(255, 102, 0, 0.1);
    transform: scale(1.05);
}

.service-card:hover h3,
.service-card:focus h3 {
    color: var(--raivon-orange);
}

.service-btn {
    background-color: transparent;
    color: var(--raivon-blue);
    border: 2px solid var(--raivon-blue);
    padding: 12px 24px;
    border-radius: 8px;


    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
}

.service-btn:hover,
.service-btn:focus {
    background-color: var(--raivon-blue);
    color: #fff;
    border-color: var(--raivon-blue);

    box-shadow: 0 4px 12px rgba(0, 30, 148, 0.2);
}

.primary-btn:hover,
.primary-btn:focus {
    background-color: var(--raivon-light-blue);
    color: #fff;
}

.secondary-btn:hover,
.secondary-btn:focus,
.service-btn:hover,
.service-btn:focus {
    background-color: var(--raivon-orange);
    color: #fff;
    border-color: var(--raivon-orange);
}

.nav-item:hover,
.nav-item:focus {
    color: var(--raivon-orange);
}

.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--raivon-orange);
    transition: width 0.2s ease;
    position: absolute;
    left: 0;
    bottom: -2px;
}

.nav-item:hover::after,
.nav-item:focus::after {
    width: 100%;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--raivon-orange);
    text-decoration: underline;
}

.social-link:hover,
.social-link:focus {
    color: var(--raivon-orange);
    transform: scale(1.03);
}

/* NON-INTERACTIVE ELEMENTS: NO HOVER EFFECTS */
.help-card:not([tabindex]):not([role="button"]):not(.interactive):hover,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):focus,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):hover .card-icon,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):focus .card-icon,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):hover .icon-accent,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):focus .icon-accent,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):hover h3,
.help-card:not([tabindex]):not([role="button"]):not(.interactive):focus h3 {
    box-shadow: none;
    color: inherit;
    transform: none;
    border: none;
}

/* Animation styles */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add staggered effect for multiple elements */
.why-it-matters p:nth-child(2) {
    transition-delay: 0.2s;
}

.why-it-matters p:nth-child(3) {
    transition-delay: 0.4s;
}

.guide-profile:nth-child(2) {
    transition-delay: 0.2s;
}

/* Experts Section Styles */
.experts-section {
    padding: 50px 20px;
    position: relative;
}

/* 1. Intro Block */
.experts-intro {
    margin: 0 auto 80px;
    text-align: center;
}

.experts-intro h2 {


    color: var(--raivon-blue);

    margin-bottom: 24px;
}

.experts-intro h2 em {
    font-style: normal;
    color: var(--raivon-orange);
}

.experts-intro .subtle {

    color: #555;
    margin-bottom: 40px;

}

.experts-intro p {


    color: var(--raivon-blue);
    margin-bottom: 30px;
}

.experts-intro p em {

    font-style: italic;
    color: var(--raivon-orange);
}

.experts-benefits {
    text-align: left;
    margin: 0 auto;
    max-width: 580px;
    padding-left: 20px;
}

.experts-benefits li {
    color: var(--raivon-blue);

    margin-bottom: 12px;

    position: relative;
    padding-left: 15px;
}

.experts-benefits li::before {
    content: "•";
    color: var(--raivon-orange);


    position: absolute;
    left: -10px;
}

/* 2. Guides Block */
.meet-guides {
    margin-bottom: 80px;
}

.meet-guides h3 {
    text-align: center;

    color: var(--raivon-blue);
    margin-bottom: 50px;

}

.guides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.guide {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 30, 148, 0.08);
    padding: 30px;
    position: relative;
}

.guide.carmen {
    border-top: 5px solid #6c8ebf;
}

.guide.viorel {
    border-top: 5px solid var(--raivon-orange);
}

.guide-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.guide-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 24px;
    box-shadow: 0 4px 12px rgba(0, 30, 148, 0.2);
}

.guide-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-headline h4 {

    color: var(--raivon-blue);
    margin-bottom: 6px;

}

.guide-title {

    color: #555;

}

.guide-bio {


    color: #555555;
    margin-bottom: 24px;
    min-height: 150px;
}

.guide-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--raivon-blue);
    border: 2px solid var(--raivon-blue);
    border-radius: 6px;


    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 180px;
    margin: 0 auto;
    display: block;
}

.guide-button:hover,
.guide-button:focus {
    background-color: var(--raivon-orange);
    color: #fff;
    border-color: var(--raivon-orange);
    transform: translateY(-2px);
}

.carmen .guide-button {
    border-color: #6c8ebf;
    color: #2a4162;
}

.carmen .guide-button:hover,
.carmen .guide-button:focus {
    background-color: #6c8ebf;
    border-color: #6c8ebf;
    color: #fff;
}

.viorel .guide-button {
    border-color: var(--raivon-orange);
    color: var(--raivon-orange);
}

.viorel .guide-button:hover,
.viorel .guide-button:focus {
    background-color: var(--raivon-orange);
    color: #fff;
}

.guide-quote {

    font-style: italic;

    padding: 20px 25px;
    border-radius: 8px;
    position: relative;
    margin: 0;
}

.carmen-quote {
    background-color: rgba(108, 142, 191, 0.1);
    border-left: 4px solid #6c8ebf;
    color: #2a4162;
}

.viorel-quote {
    background-color: rgba(255, 102, 0, 0.08);
    border-left: 4px solid var(--raivon-orange);
    color: #6b3001;
}

/* 3. CTA Block */
.experts-cta {
    background: #fff;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 100px;
}

.experts-cta p {


    color: var(--raivon-blue);

    margin-bottom: 30px;
}

.cta-button-experts {
    background-color: var(--raivon-orange);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;


    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-experts:hover,
.cta-button-experts:focus {
    background-color: var(--raivon-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .experts-intro h2 {}

    .experts-intro .subtle {}

    .guides-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .guides-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .guide {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .experts-section {
        padding: 30px 20px;
    }

    .experts-intro {
        margin-bottom: 30px;
    }

    .experts-intro h2 {

        margin-bottom: 15px;
    }

    .experts-intro .subtle {}

    .experts-intro p {}

    .experts-benefits li {

        margin-bottom: 6px;
    }

    .guide-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .guide-photo {
        margin-right: 0;
        margin-bottom: 15px;
        width: 80px;
        height: 80px;
    }

    .experts-cta {
        padding: 30px 20px;
    }

    .experts-cta p {}

    .cta-button-experts {
        width: 100%;
        padding: 15px 20px;
    }
}

/* Differentiators Section */
.differentiators {
    padding: 40px 20px;
}

.differentiators .section-title {

    color: var(--raivon-blue);
    margin-bottom: 60px;

    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.diff-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.diff-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 16px rgba(0, 56, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.diff-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 56, 255, 0.1);
}

.diff-icon {

    color: var(--raivon-blue);
    margin-bottom: 24px;
    background: rgba(0, 30, 148, 0.08);
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.diff-card:hover .diff-icon {
    color: var(--raivon-orange);
    background: rgba(255, 102, 0, 0.1);
    transform: scale(1.05);
}

.diff-card h3 {
    margin-bottom: 16px;
    transition: color 0.2s ease;
}

.diff-card:hover h3 {
    color: var(--raivon-orange);
}

.diff-text {
    color: #555555;


    margin: 0;
}

.diff-tagline {
    display: inline-block;
    margin: 0 auto;

    color: var(--raivon-blue);

    border-radius: 30px;
    background-color: rgba(0, 30, 148, 0.05);
}

@media (max-width: 1024px) {
    .diff-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .diff-card {
        padding: 35px 25px;
    }

    .diff-card h3 {}

    .diff-text {}
}

@media (max-width: 768px) {
    .differentiators {
        padding: 40px 20px;
    }

    .diff-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }

    .diff-tagline {}
}

/* Industry Recognition Section */
.industry-recognition {
    padding: 100px 20px;
    background-color: #f8f9ff;
}

.industry-recognition .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.industry-recognition .section-title {
    color: var(--raivon-blue);
    margin-bottom: 10px;
    text-align: center;
}

.industry-recognition .section-subtitle {
    color: var(--raivon-blue);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.recognition-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(0, 30, 148, 0.1);
    border-bottom: 1px solid rgba(0, 30, 148, 0.1);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--raivon-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--raivon-blue);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.recognition-category {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 56, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.recognition-category:hover {
    box-shadow: 0 8px 30px rgba(0, 56, 255, 0.12);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 30, 148, 0.1);
}

.category-icon {
    font-size: 1.8rem;
    color: var(--raivon-orange);
    margin-right: 15px;
    background: rgba(255, 102, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-title {
    color: var(--raivon-blue);
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.achievement-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 30, 148, 0.05);
}

.achievement-item:last-of-type {
    border-bottom: none;
    margin-bottom: 10px;
}

.achievement-item h4 {
    color: var(--raivon-blue);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.achievement-badge {
    background: rgba(255, 102, 0, 0.1);
    color: var(--raivon-orange);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid rgba(255, 102, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.achievement-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.achievement-summary {
    margin-top: 15px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 102, 0, 0.2);
    text-align: center;
}

.summary-text {
    color: var(--raivon-orange);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 102, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .industry-recognition {
        padding: 40px 20px;
    }

    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .recognition-stats {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
        padding: 20px 0;
    }

    .stat-item {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .recognition-category {
        padding: 25px 20px;
    }

    .category-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .category-icon {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        margin-right: 12px;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .achievement-list {
        gap: 15px;
    }

    .achievement-item {
        padding: 12px 0;
    }

    .achievement-item h4 {
        font-size: 1rem;
        margin-bottom: 6px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .achievement-badge {
        font-size: 0.7rem;
        padding: 2px 6px;
    }

    .achievement-item p {
        font-size: 0.9rem;
    }

    .achievement-summary {
        margin-top: 10px;
        padding-top: 15px;
    }

    .summary-text {
        font-size: 0.85rem;
        padding: 6px 14px;
    }

    .category-tags {
        top: 10px;
        left: 10px;
        gap: 4px;
        max-width: calc(100% - 20px);
    }

    .category-tag {
        padding: 3px 6px;
        font-size: 0.55rem;
        letter-spacing: 0.1px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {

    h1,
    .hero-title,
    .who-headline,
    .section-title {

        margin-bottom: 12px !important;

    }

    h2,
    .section-title,
    .experts-intro h2,
    .cta-strip h2,
    .testimonials .section-title,
    .diff-title {

        margin-bottom: 12px !important;

    }

    h3,
    .service-card h3,
    .meet-guides h3,
    .diff-card h3 {

        margin-bottom: 10px !important;

    }

    h4,
    .guide-headline h4 {

        margin-bottom: 6px !important;

    }

    p,
    .hero-description,
    .who-sub-headline,
    .section-subtitle,
    .service-summary,
    .service-details,
    .experts-intro p,
    .guide-bio,
    .diff-text,
    .testimonial-text {


        margin-bottom: 12px !important;
    }

    .who-we-help,
    .experts-section,
    .differentiators,
    .industry-recognition,
    .what-we-offer {
        padding: 30px 20px !important;
    }

    .hero {
        padding: 30px 20px !important;
    }

    .experts-benefits li {

        margin-bottom: 5px !important;
    }
}

@media (max-width: 768px) {
    .tag-padding {
        padding: 5px 15px !important;
    }



    .service-cards {
        gap: 15px !important;
        margin-top: 10px !important;
    }

    .service-card {
        padding: 20px 15px !important;
        min-height: unset !important;
    }

    .service-additional {
        margin-top: 15px !important;
    }
}

@media (max-width: 768px) {
    .experts-section+.what-we-offer {
        margin-top: -30px !important;
    }

    .what-we-offer {
        padding: 10px 20px 20px !important;
    }

    .meet-guides {
        margin-bottom: 30px !important;
    }

    .guide {
        margin-bottom: 0 !important;
    }

    .guide-bio {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 768px) {
    .service-card .service-icon {
        display: none !important;
    }

    .diff-icon {
        display: none !important;
    }
}

section.hero-full-bleed-background {
    background: linear-gradient(120deg, #ffffff 0%, #f0f4ff 70%, #dce6ff 100%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}
/* Industry Recognition Section - Enhanced Styling */
.industry-recognition {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.industry-recognition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="0.5" fill="%23002d9c" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.recognition-category {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    padding: 70px 30px 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 45, 156, 0.08);
    border: 1px solid rgba(0, 45, 156, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.recognition-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--raivon-blue), var(--raivon-orange));
    opacity: 0;
    transition: none;
}

.recognition-category:hover {
    box-shadow: 0 20px 60px rgba(0, 45, 156, 0.15);
}

.recognition-category h3 {
    transition: color 0.3s ease;
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.recognition-category:hover h3 {
    color: var(--raivon-blue);
    text-decoration: underline;
}

.recognition-category p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recognition-category:hover::before {
    opacity: 1;
}

/* Category Tags */
.category-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    z-index: 2;
    max-width: calc(100% - 30px);
    overflow: hidden;
}

.category-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    background: white;
    border: 1.5px solid;
    line-height: 1.2;
}

/* PRIMARY TAGS - Map to services */
.category-tag.training {
    border-color: #28a745;
    color: #28a745;
}

.category-tag.advisor {
    border-color: #3498db;
    color: #3498db;
}

.category-tag.safety {
    border-color: #e74c3c;
    color: #e74c3c;
}

/* AUTHORITY TAGS - Build credibility */
.category-tag.tv {
    border-color: #ff6b00;
    color: #ff6b00;
}

.category-tag.keynote {
    border-color: #002d9c;
    color: #002d9c;
}

.category-tag.enterprise {
    border-color: #495057;
    color: #495057;
}

/* VALUE TAGS - What you deliver */
.category-tag.transform {
    border-color: #9b59b6;
    color: #9b59b6;
}

.category-tag.trusted {
    border-color: #34495e;
    color: #34495e;
}

.category-tag.practical {
    border-color: #16a085;
    color: #16a085;
}

/* NEW TAGS - Based on persona feedback */
.category-tag.implementation {
    border-color: #28a745;
    color: #28a745;
}

.category-tag.pilot {
    border-color: #17a2b8;
    color: #17a2b8;
}

.category-tag.labs {
    border-color: #002d9c;
    color: #002d9c;
}

.category-tag.roi {
    border-color: #ff6b00;
    color: #ff6b00;
}

.category-tag.management {
    border-color: #dc3545;
    color: #dc3545;
}

.category-tag.compliance {
    border-color: #495057;
    color: #495057;
}

.category-tag.security {
    border-color: #e83e8c;
    color: #e83e8c;
}

.category-tag.governance {
    border-color: #6f42c1;
    color: #6f42c1;
}

.category-tag.change {
    border-color: #fd7e14;
    color: #fd7e14;
}

.category-tag.workforce {
    border-color: #343a40;
    color: #343a40;
}

.category-tag.enablement {
    border-color: #8B4513;
    color: #8B4513;
}

.category-tag.support {
    border-color: #6c757d;
    color: #6c757d;
}

.category-tag.workshop {
    border-color: #17a2b8;
    color: #17a2b8;
}

.category-tag.advisory {
    border-color: #007bff;
    color: #007bff;
}

.category-tag.proven {
    border-color: #20c997;
    color: #20c997;
}

.category-tag.risk {
    border-color: #dc3545;
    color: #dc3545;
}

.category-tag.team {
    border-color: #28a745;
    color: #28a745;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 45, 156, 0.08);
}

.category-icon {
    font-size: 2.2rem;
    color: var(--raivon-orange);
    margin-right: 18px;
    background: rgba(255, 102, 0, 0.1);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.recognition-category:hover .category-icon {
    background: rgba(255, 102, 0, 0.15);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--raivon-blue);
    margin: 0;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.achievement-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 45, 156, 0.06);
    transition: all 0.2s ease;
}

.achievement-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.achievement-item:hover {
    background: rgba(0, 45, 156, 0.02);
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 8px;
    margin-left: -15px;
    margin-right: -15px;
}

.achievement-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--raivon-blue);
    margin: 0 0 12px 0;
    line-height: 1.4;
}


.achievement-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.achievement-image {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

/* Hover overlay for images */
.achievement-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 45, 156, 0.85);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.recognition-category:hover .achievement-image::after {
    opacity: 1;
}

/* Read More button */
.achievement-image::before {
    content: 'Read More →';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    white-space: nowrap;
}

.recognition-category:hover .achievement-image::before {
    opacity: 1;
}

.achievement-image img {
    width: 100%;
    height: auto;
    min-height: 100px;
    max-height: 200px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

/* Special handling for wide/panoramic images */
.achievement-image.wide-format img {
    height: auto;
    min-height: 80px;
    max-height: 220px;
    object-fit: contain;
    object-position: center;
}

/* Special handling for portrait/square images */
.achievement-image.portrait-format img {
    height: auto;
    min-height: 120px;
    max-height: 180px;
    object-fit: contain;
}


/* Mobile Responsive */
@media (max-width: 1024px) {
    .recognition-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 40px;
    }

    .industry-recognition {
        padding: 70px 20px;
    }

    .recognition-category {
        padding: 30px 25px;
    }

    .achievement-item h4 {
        font-size: 1rem;
    }

    .achievement-image img {
        min-height: 80px;
        max-height: 140px;
    }

    .achievement-image.wide-format img {
        min-height: 60px;
        max-height: 140px;
    }
}

@media (max-width: 768px) {
    .industry-recognition {
        padding: 50px 15px;
    }

    .recognition-category {
        padding: 50px 20px 25px 20px;
    }

    .category-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 25px;
    }

    .category-icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 1.8rem;
        padding: 12px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .achievement-item {
        padding: 15px 0;
    }

    .achievement-item h4 {
        font-size: 0.95rem;
    }

    .achievement-item p {
        font-size: 0.9rem;
    }

    .achievement-image img {
        min-height: 60px;
        max-height: 120px;
    }

    .achievement-image.wide-format img {
        min-height: 50px;
        max-height: 120px;
    }
}

/* Distinctive colors for names */
.carmen-name {
    color: #8b5cf6;
}

.viorel-name {
    color: #0ea5e9;
}

/* See More button section */
.see-more-section {
    text-align: center;
    margin-top: 40px;
}

/* Viorel section spacing on achievements page */
.person-section.viorel-section {
    margin-top: 5rem;
}

/* Contact popup method selection - Modern 2025 Design */
.contact-options {
    padding: 20px 0;
}

.contact-subtitle {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-weight: 500;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.contact-method-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.contact-method-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 30, 148, 0.02));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-method-btn:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
}

.contact-method-btn:hover::before {
    opacity: 1;
}

.method-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.method-email .method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.method-whatsapp .method-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.method-call .method-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.method-icon svg {
    width: 26px;
    height: 26px;
    color: white;
}

.method-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.method-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.method-desc {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 400;
}

.contact-method-btn:hover .method-title {
    color: #0f172a;
}

.contact-method-btn:hover .method-icon {
    transform: scale(1.05);
}

.back-to-options {
    background: none;
    border: none;
    color: var(--raivon-blue);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.back-to-options:hover {
    opacity: 0.7;
}