/* ============================================
   FEATURES (icon boxes)
   ============================================ */
.features-item-wrap {
    border-bottom: 1px solid var(--lavender);
    padding-bottom: 46px;
}
.features-overlap-section {
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 56px 0 34px;
    background: var(--white);
}
.features-item-two {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}
.features-icon-two {
    width: 82px; height: 82px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 14px; background: var(--lavender);
    flex: 0 0 auto; color: var(--primary); font-size: 40px;
    line-height: 0; position: relative; margin-right: 0;
}
.features-icon-two::before {
    content: ""; position: absolute; left: 50%;
    transform: translateX(-50%); background: var(--primary);
    top: 0; width: 16px; height: 3px; border-radius: 3px;
}
.features-icon-two img {
    width: 52px;
    height: 52px;
    display: block;
    transition: transform .3s linear;
}
.features-item-two:hover .features-icon-two img { transform: translateY(-2px); }
.features-content-two .title {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--secondary);
}
.features-content-two p {
    margin-bottom: 0;
    color: var(--body-color);
    width: 100%;
    max-width: 230px;
    font-size: 15px;
    line-height: 1.55;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    background:
        radial-gradient(circle at 12% 22%, rgba(20,81,137,.07) 0%, rgba(20,81,137,0) 15%),
        radial-gradient(circle at 74% 18%, rgba(29,94,245,.05) 0%, rgba(29,94,245,0) 16%),
        var(--white);
    padding-top: 48px;
    padding-bottom: 44px;
}
.about-img-wrap-three {
    position: relative;
    min-height: 710px;
    padding: 74px 36px 150px 42px;
}
.about-section-grid {
    --bs-gutter-x: 52px;
}
.about-main-card {
    position: relative;
    width: min(100%, 440px);
    min-height: 470px;
    border-radius: 112px 0 0 0;
    background: #f8faff;
    box-shadow: 0 30px 60px rgba(23,38,76,.08);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 3;
}
.about-main-card__person {
    width: 100%;
    height: 100%;
    max-height: none;
    display: block;
    object-fit: cover;
    object-position: center center;
}
.about-mini-card {
    position: absolute;
    right: 0;
    bottom: 102px;
    width: 255px;
    height: 255px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
    border: 10px solid var(--white);
    box-shadow: 0 24px 45px rgba(20,30,70,.12);
    z-index: 4;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.about-mini-card__bg {
    display: none;
}
.about-mini-card__person {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.experience-wrap {
    width: min(100%, 430px);
    min-height: 146px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    background: linear-gradient(135deg, #145189 0%, #1d5ef5 100%);
    color: var(--white);
    border-radius: 0 0 0 66px;
    padding: 24px 26px 26px 30px;
    position: absolute;
    left: 0;
    bottom: 18px;
    z-index: 5;
}
.experience-wrap .title {
    margin-bottom: 0;
    text-align: center;
    font-size: 62px;
    line-height: .82;
    color: var(--white);
    position: relative;
    padding-right: 16px;
    margin-right: 2px;
    flex: 0 0 auto;
}
.experience-wrap .title span {
    display: block;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0;
    margin-top: 10px;
    text-transform: none;
}
.experience-wrap .title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 66px;
    background: var(--white);
}
.experience-wrap p {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
    max-width: 180px;
}
.about-content-wrap {
    position: relative;
    z-index: 2;
    padding-right: 72px;
}
.about-summary,
.about-note {
    color: var(--body-color);
    font-size: 17px;
    line-height: 1.65;
}
.about-summary {
    max-width: 650px;
    margin: 0 0 26px;
}
.about-note {
    max-width: 620px;
    margin: 24px 0 0;
}
.about-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.elementor-icon-list-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 17px;
    font-weight: 500;
}
.elementor-icon-list-items li i { color: var(--primary); font-size: 16px; }
.about-author-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}
.about-author-info .thumb img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
    box-shadow: 0 12px 28px rgba(22,33,72,.12);
}
.about-author-info .content .title { font-size: 18px; margin-bottom: 2px; }
.about-author-info .content span { font-size: 14px; color: var(--gray-three); }
.about-author-info .signature { margin-left: auto; }
.about-author-info .signature img { max-height: 40px; }
.about-signature {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--secondary);
    font-size: 32px;
    letter-spacing: -.03em;
}

/* About Decorative Shapes */
.about-pattern {
    position: absolute;
    pointer-events: none;
    display: block;
}
.about-pattern--stripes {
    top: 10px;
    left: 318px;
    width: 156px;
    height: 156px;
    opacity: .72;
    z-index: 1;
}
.about-pattern--dots {
    left: -10px;
    bottom: 150px;
    width: 96px;
    height: 96px;
    z-index: 1;
}
.about-pattern--tiles {
    display: none;
}
.about-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    display: block;
}
.about-shape-1 {
    top: 242px;
    left: 24px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: .34;
    background: radial-gradient(circle, rgba(29,94,245,.22) 0%, rgba(29,94,245,.1) 26%, rgba(29,94,245,.02) 52%, transparent 70%);
    filter: blur(2px);
    animation: aboutCircleFloat 8s ease-in-out infinite;
}
.about-shape-2 {
    top: 106px;
    right: -12px;
    width: 356px;
    height: 470px;
    opacity: .42;
    z-index: 0;
    animation: aboutShapeDrift 11s ease-in-out infinite;
}
.about-brands-wrap {
    margin-top: 14px;
    padding-top: 26px;
}
.about-brands-copy {
    margin: 0 0 18px;
    text-align: center;
    color: var(--body-color);
    font-size: 16px;
    font-weight: 500;
}
.about-brands-wrap .brand-item {
    padding: 0 26px;
}
.about-brands-wrap .brand-item img {
    max-height: 40px;
    width: auto;
    opacity: .88;
    filter: grayscale(1);
}
.about-pattern--stripes,
.about-pattern--dots {
    will-change: transform, opacity;
}
.about-pattern--stripes {
    animation: aboutFloatSoft 8s ease-in-out infinite;
}
.about-pattern--dots {
    animation: aboutFloatSoftReverse 7s ease-in-out infinite;
}
@keyframes aboutFloatSoft {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}
@keyframes aboutFloatSoftReverse {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, 10px, 0); }
}
@keyframes aboutShapeFloatLeft {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(8px, -10px, 0); }
}
@keyframes aboutCircleFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(12px, -8px, 0) scale(1.06); }
}
@keyframes aboutShapeFloatRight {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-8px, 10px, 0); }
}
.js-typewriter {
    visibility: hidden;
}
.js-typewriter.is-typing,
.js-typewriter.is-typed {
    visibility: visible;
}
.js-typewriter.is-typing::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 1em;
    margin-left: 4px;
    vertical-align: -0.12em;
    background: currentColor;
    animation: typeCaret .8s step-end infinite;
}
.js-typewriter.is-typed::after {
    display: none;
}
.js-typewriter--title {
    display: block;
    min-height: 2.5em;
}
@keyframes typeCaret {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}
.about-brands-wrap .brand-item:hover img {
    opacity: 1;
}

/* ============================================
   BRANDS SLIDER
   ============================================ */
.brand-area { padding: 50px 0; }
.brand-item { text-align: center; padding: 0 25px; }
.brand-item img { display: inline-block; vertical-align: middle; }
.brand-item:hover img { opacity: 1 !important; }
.brand-item img {
    max-height: 36px; opacity: .6; transition: var(--transition);
    filter: grayscale(100%);
}
.brand-item:hover img { opacity: 1; filter: grayscale(0); }

/* ============================================
   SERVICES
   ============================================ */
.services-area-two { background: var(--section-bg); }
.services-item-two {
    position: relative; margin-bottom: 30px;
}
.services-thumb-two {
    position: relative; border-radius: 8px;
    border: 7px solid var(--white);
    box-shadow: 0px 10px 30px #CED2DD; overflow: hidden; z-index: 1;
}
.services-thumb-two img { width: 100%; min-height: 333px; object-fit: cover; }
.services-visual {
    min-height: 333px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 28px;
    color: var(--white);
    position: relative;
    z-index: 1;
}
.services-visual i {
    font-size: 40px;
    margin-bottom: 14px;
}
.services-visual span {
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}
.services-visual--analysis { background: linear-gradient(135deg, #0c54ff 0%, #00194c 100%); }
.services-visual--compare { background: linear-gradient(135deg, #324b7d 0%, #0c54ff 100%); }
.services-visual--recommend { background: linear-gradient(135deg, #0d7c66 0%, #0055ff 100%); }
.services-visual--support { background: linear-gradient(135deg, #00194c 0%, #324b7d 100%); }
.services-thumb-two::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(360deg, #00194C 11.66%, rgba(0,25,76,0) 65.89%);
}
.services-thumb-two::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(360deg, rgba(0,25,76,.55) 52.77%, rgba(0,25,76,0) 100%, #00194C 100%);
    transition: .3s linear; opacity: 0;
}
.services-item-two:hover .services-thumb-two::after { opacity: 1; }
.services-thumb-two .item-shape {
    position: absolute; right: 0; top: 0;
    margin-top: -50px; transition: .3s linear; opacity: 0;
}
.services-thumb-two .item-shape img { max-height: 75px; min-height: auto; }
.services-item-two:hover .services-thumb-two .item-shape { margin-top: 0; opacity: 1; }
.services-content-two {
    position: absolute; left: 30px; right: 30px; bottom: 25px; z-index: 2;
    transition: .3s linear;
}
.services-content-two .icon {
    width: 55px; height: 55px; display: flex;
    align-items: center; justify-content: center; font-size: 36px;
    line-height: 0; background: rgba(255,255,255,.2);
    border-radius: 8px; color: var(--white);
    margin-bottom: 15px; transition: .3s linear;
}
.services-item-two:hover .services-content-two .icon { background: var(--primary); }
.services-content-two .title {
    margin-bottom: 10px; font-size: 24px; color: var(--white);
}
.services-content-two p {
    margin-bottom: 5px; color: var(--lavender);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: .3s linear;
}
.services-item-two:hover .services-content-two { bottom: 40px; }
.services-item-two:hover .services-content-two p {
    max-height: 100px; opacity: 1;
}

/* Flat card variant (no image) — used in Cómo Trabajamos */
.services-item-flat {
    position: relative; margin-bottom: 30px;
    background: var(--white); border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    padding: 30px 20px; text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-item-flat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.services-item-flat .icon {
    width: 70px; height: 70px; display: flex;
    align-items: center; justify-content: center;
    font-size: 32px; color: var(--primary);
    background: var(--lavender); border-radius: 50%;
    margin: 0 auto 15px; transition: var(--transition);
}
.services-item-flat:hover .icon {
    background: var(--primary); color: var(--white);
}
.services-item-flat .title {
    font-size: 20px; color: var(--secondary); margin-bottom: 10px;
}
.services-item-flat p {
    color: var(--body-color); margin-bottom: 0;
}

/* ============================================
   OVERVIEW + COUNTERS
   ============================================ */
.overview-area {
    background-color: var(--white);
    background-image:
        linear-gradient(180deg, rgba(240,246,255,.48) 0%, rgba(255,255,255,0) 10%, rgba(255,255,255,1) 22%),
        url("../assets/img/patterns/wave-grid.svg");
    background-repeat: no-repeat, repeat;
    background-position: top center, top center;
    background-size: auto, 320px 120px;
    overflow: hidden;
    position: relative;
}
.overview-corner-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 248px;
    height: auto;
    opacity: .18;
    pointer-events: none;
    z-index: 0;
    animation: overviewWireFloat 10s ease-in-out infinite;
}
.overview-row {
    --bs-gutter-x: 56px;
}
.overview-img-wrap {
    position: relative;
}
.overview-img-wrap--gerow {
    min-height: 560px;
    padding: 74px 0 76px 78px;
}
.overview-visual-main {
    position: relative;
    width: 420px;
    height: 500px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(23,38,76,.08);
}
.overview-visual-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
.overview-badge {
    position: absolute;
    top: 94px;
    right: 88px;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    box-shadow: 0 16px 30px rgba(0,85,255,.22);
    border: 7px solid var(--white);
    z-index: 4;
}
.overview-floating-card {
    position: absolute;
    left: 14px;
    bottom: 32px;
    width: 230px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 22px 45px rgba(20,30,70,.12);
    padding: 22px 22px 18px;
    z-index: 4;
}
.overview-floating-card h3 {
    font-size: 54px;
    line-height: .9;
    margin-bottom: 6px;
    color: var(--secondary);
}
.overview-floating-card > span {
    display: block;
    color: var(--body-color);
    font-size: 17px;
    font-weight: 500;
}
.overview-bars {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-top: 18px;
    height: 62px;
}
.overview-bars span {
    display: block;
    width: 10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #7fb0ff 0%, #1d5ef5 100%);
    height: 0;
}
.overview-bars-labels {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    color: #7a86a8;
    font-size: 14px;
}
.overview-pattern {
    position: absolute;
    pointer-events: none;
    display: block;
}
.overview-pattern--dots {
    left: 0;
    top: 154px;
    width: 160px;
    height: 160px;
    opacity: .5;
    z-index: 1;
    animation: overviewDotsFloat 6.5s ease-in-out infinite;
}
.overview-content--gerow {
    position: relative;
    z-index: 2;
    padding-right: 42px;
}
.overview-content--gerow .section-title-two .title {
    font-size: clamp(40px, 4vw, 58px);
    line-height: 1.07;
    max-width: 620px;
}
.overview-content--gerow p {
    max-width: 590px;
    font-size: 17px;
    line-height: 1.72;
}
.overview-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-width: 540px;
    margin-top: 18px;
}
.overview-metric-card {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 118px;
    padding: 20px 20px 18px;
    border: 1px solid #d7dff0;
    border-radius: 16px;
    background: var(--white);
}
.overview-metric-card .icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(180deg, #edf3ff 0%, #e1ebff 100%);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    flex: 0 0 auto;
}
.overview-metric-card .icon::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 54px;
    background: #d7dff0;
}
.overview-metric-card .content {
    padding-left: 12px;
}
.overview-metric-card .content h3 {
    font-family: var(--heading-font);
    font-size: 44px;
    line-height: 1;
    margin-bottom: 6px;
    color: var(--secondary);
}
.overview-metric-card .content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: var(--body-color);
    max-width: none;
}
.count-suffix {
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 800;
    color: var(--secondary);
}
@keyframes overviewDotsFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: .45;
    }
    50% {
        transform: translate3d(0, -14px, 0);
        opacity: .7;
    }
}
@keyframes overviewWireFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-8px, 8px, 0);
    }
}

/* ============================================
   PROJECTS
   ============================================ */
.project-item-two {
    position: relative; margin-bottom: 30px;
    border-radius: 10px; overflow: hidden;
}
.project-thumb-two {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 22px;
}
.project-thumb-two img {
    width: 100%; height: 300px; object-fit: cover;
    transition: var(--transition);
}
.project-thumb-two--savings { background: linear-gradient(135deg, #0055ff 0%, #00194c 100%); }
.project-thumb-two--coverage { background: linear-gradient(135deg, #0f766e 0%, #0055ff 100%); }
.project-thumb-two--transition { background: linear-gradient(135deg, #324b7d 0%, #00194c 100%); }
.project-badge {
    position: relative;
    z-index: 2;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.2);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.project-item-two:hover .project-thumb-two img { transform: scale(1.05); }
.project-content-two {
    position: absolute; left: 25px; right: 25px; bottom: 25px; z-index: 2;
}
.project-content-two .title { font-size: 20px; margin-bottom: 4px; }
.project-content-two .title a { color: var(--white); }
.project-content-two .title a:hover { color: var(--primary); }
.project-content-two span { color: var(--lavender); font-size: 14px; }
.project-content-two .link-btn {
    position: absolute; right: 0; bottom: 0;
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition);
}
.project-content-two .link-btn:hover { background: var(--white); color: var(--primary); }
.project-thumb-two::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(360deg, #00194C 11.66%, rgba(0,25,76,0) 70%);
    z-index: 1;
}

/* ============================================
   CTA INNER
   ============================================ */
.cta-inner-wrap {
    background: var(--secondary); border-radius: 15px;
    padding: 50px; margin: 0; position: relative; overflow: hidden;
}
.cta-inner-wrap::before {
    content: ""; position: absolute;
    top: -30%; left: -10%; width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,85,255,.3) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-content { display: flex; align-items: center; gap: 30px; position: relative; z-index: 1; }
.cta-info-wrap { display: flex; align-items: center; gap: 20px; }
.cta-info-wrap .icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; flex-shrink: 0;
}
.cta-info-wrap .content span {
    display: block; color: rgba(255,255,255,.6); font-size: 13px;
    text-transform: uppercase; letter-spacing: .05em; margin-bottom: 5px;
}
.cta-info-wrap .content a {
    color: var(--white); font-size: 24px; font-weight: 700;
    font-family: var(--heading-font);
}
.cta-inner-wrap .title {
    color: var(--white); font-size: 28px; font-weight: 700;
    margin: 0 0 0 20px; position: relative; z-index: 1;
}
.cta-btn { position: relative; z-index: 1; flex-shrink: 0; }

/* ============================================
   TEAM
   ============================================ */
.team-item-two {
    position: relative; margin-bottom: 30px; text-align: center;
}
.team-thumb-two {
    position: relative; border-radius: 12px; overflow: hidden;
    background: linear-gradient(180deg, #f5f8ff 0%, #e8efff 100%);
}
.team-thumb-two img { width: 100%; height: 320px; object-fit: cover; }
.team-social-two {
    position: absolute; bottom: 15px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 8px;
    opacity: 0; transition: var(--transition);
}
.team-item-two:hover .team-social-two { opacity: 1; }
.team-social-two a {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--white); color: var(--secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}
.team-social-two a:hover { background: var(--primary); color: var(--white); }
.team-content-two { margin-top: 20px; }
.team-content-two .title { font-size: 20px; margin-bottom: 5px; }
.team-content-two .title a { color: var(--secondary); }
.team-content-two .title a:hover { color: var(--primary); }
.team-content-two span { color: var(--primary); font-size: 14px; font-weight: 600; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-area { background: var(--white); position: relative; }
.testimonial-layout {
    --bs-gutter-x: 54px;
}
.testimonial-confetti {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: testimonialConfettiFloat 4.2s ease-in-out infinite;
}
.testimonial-confetti--one {
    width: 10px;
    height: 10px;
    left: 6%;
    top: 18%;
    background: #ff6b6b;
}
.testimonial-confetti--two {
    width: 7px;
    height: 7px;
    left: 20%;
    top: 12%;
    background: #1d5ef5;
    animation-delay: .8s;
}
.testimonial-confetti--three {
    width: 6px;
    height: 6px;
    right: 10%;
    top: 36%;
    background: #f7b731;
    animation-delay: 1.4s;
}
.testimonial-confetti--four {
    width: 8px;
    height: 8px;
    left: 55%;
    bottom: 14%;
    background: #8e6bff;
    animation-delay: .4s;
}
.testimonial-confetti--five {
    width: 8px;
    height: 8px;
    right: 18%;
    bottom: 10%;
    background: #ff6b6b;
    animation-delay: 1.1s;
}
.testimonial-confetti--six {
    width: 6px;
    height: 6px;
    left: 35%;
    top: 22%;
    background: #f7b731;
    animation-delay: .3s;
}
.testimonial-confetti--seven {
    width: 9px;
    height: 9px;
    right: 28%;
    top: 22%;
    background: #56ccf2;
    animation-delay: 1.7s;
}
.testimonial-confetti--eight {
    width: 7px;
    height: 7px;
    left: 14%;
    bottom: 12%;
    background: #8e6bff;
    animation-delay: .9s;
}
.testimonial-confetti--nine {
    width: 11px;
    height: 11px;
    right: 12%;
    bottom: 18%;
    background: #1d5ef5;
    animation-delay: 1.2s;
}
.testimonial-confetti--ten {
    width: 5px;
    height: 5px;
    left: 58%;
    bottom: 8%;
    background: #ff6b6b;
    animation-delay: .5s;
}
.testimonial-star-shape {
    position: absolute;
    left: 7%;
    bottom: 20%;
    width: 74px;
    height: 74px;
    background: #ffc83d;
    clip-path: polygon(50% 0%, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0% 50%, 39% 39%);
    opacity: .92;
    z-index: 0;
    animation: testimonialStarPulse 4.8s ease-in-out infinite;
}
.testimonial-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1;
}
.testimonial-visual__blob {
    position: absolute;
    left: 8px;
    bottom: 26px;
    width: 520px;
    height: 438px;
    background: #f3f6fd;
    border-radius: 44% 56% 42% 58% / 56% 40% 60% 44%;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.testimonial-visual__person-wrap {
    position: absolute;
    left: 8px;
    width: 520px;
    bottom: 26px;
    height: 438px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.testimonial-visual__person {
    position: relative;
    max-height: 548px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}
.testimonial-visual__person--base,
.testimonial-visual__person--top {
    transform: translateY(2px);
}
.testimonial-visual__person--top {
    clip-path: inset(0 0 34% 0);
}
.testimonial-pattern {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}
.testimonial-pattern--dots {
    left: 34px;
    top: 190px;
    width: 132px;
    height: 132px;
    opacity: .5;
    animation: overviewDotsFloat 7s ease-in-out infinite;
}
.testimonial-content-shell {
    position: relative;
    z-index: 2;
    margin-left: 46px;
}
.testimonial-heading {
    max-width: 470px;
    margin-bottom: 30px;
}
.testimonial-heading .title {
    max-width: 520px;
}
.testimonial-slider-shell {
    position: relative;
    padding-right: 96px;
    min-height: 348px;
}
.testimonial-item-two {
    background: transparent;
    border-radius: 0; padding: 22px 0 18px; margin: 0;
    border: none;
    box-shadow: none;
    position: relative;
    min-height: 320px;
}
.testimonial-content-two .rating { margin-bottom: 20px; }
.testimonial-content-two .rating i { color: #FFB930; font-size: 26px; margin-right: 6px; }
.testimonial-quote-mark {
    position: absolute;
    top: 6px;
    right: 10px;
    font-family: var(--heading-font);
    font-size: 126px;
    line-height: .7;
    color: rgba(29,94,245,.24);
}
.testimonial-content-two p {
    color: #324b7d; font-size: 20px; line-height: 1.75;
    margin-bottom: 34px; font-style: italic;
    max-width: 88%;
}
.testimonial-avatar { display: flex; align-items: center; gap: 15px; }
.testimonial-avatar .avatar-thumb img {
    width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
    box-shadow: 0 12px 26px rgba(22,33,72,.14);
}
.testimonial-avatar .avatar-info .title { color: var(--secondary); font-size: 18px; margin-bottom: 4px; }
.testimonial-avatar .avatar-info span { color: #546387; font-size: 14px; }
.testimonial-nav-two {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 0;
}
.testimonial-nav-two button {
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--white); color: var(--secondary);
    border: 1px solid #d7dff0; font-size: 22px;
    cursor: pointer; transition: var(--transition);
}
.testimonial-nav-two button:hover {
    background: var(--white);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}
.testimonial-active-two .slick-slide {
    padding: 0;
}
.testimonial-active-two .slick-list {
    overflow: hidden;
    min-height: 320px;
}
@keyframes testimonialConfettiFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    35% { transform: translate3d(0, -20px, 0) scale(1.08); }
    70% { transform: translate3d(0, 10px, 0) scale(.96); }
}
@keyframes testimonialStarPulse {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    50% { transform: translate3d(0, -8px, 0) rotate(10deg) scale(1.06); }
}
/* ============================================
   REQUEST / CONTACT FORM
   ============================================ */
.request-area { background: var(--white); position: relative; }
.request-form-wrap .form-grp { margin-bottom: 20px; }
.request-form-wrap .form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}
.request-form-wrap input {
    width: 100%; border: 1px solid var(--border-color);
    border-radius: 8px; padding: 15px 20px;
    font-size: 15px; font-family: var(--body-font);
    color: var(--secondary); outline: none; transition: var(--transition);
}
.request-form-wrap input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,85,255,.1); }
.request-form-wrap input::placeholder { color: var(--gray-three); }
.request-form-wrap button {
    width: 100%; background: var(--primary); color: var(--white);
    border: none; border-radius: 8px; padding: 16px 30px;
    font-size: 15px; font-weight: 700; text-transform: uppercase;
    cursor: pointer; letter-spacing: .02em; transition: var(--transition);
}
.request-form-wrap button:hover { background: var(--secondary); }
.request-form-wrap button:disabled { opacity: .7; cursor: wait; }

/* Form validation */
.form-grp.error input {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(231,76,60,.1);
}
.error-msg {
    display: block; color: var(--danger); font-size: 12px;
    margin-top: 4px;
}

/* Request Decorative Shape */
.request-shape {
    position: absolute; top: 10%; right: 5%; width: 128px; height: 128px;
    pointer-events: none; z-index: 1;
    border-radius: 32px;
    background:
        linear-gradient(135deg, rgba(0,85,255,.16), rgba(0,25,76,.05)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.4) 0 8px, rgba(255,255,255,0) 8px 16px);
    animation: alltuchtopdown 7s infinite linear;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .about-section-grid { --bs-gutter-x: 34px; }
    .about-section {
        padding-top: 40px;
    }
    .about-img-wrap-three {
        min-height: 668px;
        padding: 64px 18px 140px 22px;
    }
    .about-main-card {
        width: min(100%, 400px);
        min-height: 438px;
    }
    .about-main-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .about-mini-card {
        width: 230px;
        height: 230px;
        right: 0;
        bottom: 102px;
    }
    .about-mini-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .experience-wrap {
        width: min(100%, 402px);
        padding: 22px 22px 24px 24px;
    }
    .experience-wrap .title {
        font-size: 56px;
    }
    .experience-wrap p {
        font-size: 14px;
        max-width: 170px;
    }
    .about-content-wrap {
        padding-right: 20px;
    }
    .about-brands-wrap {
        margin-top: 2px;
        padding-top: 18px;
    }
    .about-brands-wrap .brand-item {
        padding: 0 20px;
    }
    .about-brands-wrap .brand-item img {
        max-height: 36px;
    }
}

@media (max-width: 991px) {
    .nav-menu,
    .header-action .header-contact-two,
    .header-action .header-search,
    .header-action .offcanvas-menu { display: none; }
    .mobile-nav-toggler { display: block; }
    .menu-area { padding: 0; }
    .section-padding { padding: 80px 0; }
    .about-section {
        padding-top: 34px;
        padding-bottom: 34px;
    }
    .about-img-wrap-three {
        min-height: auto;
        margin-bottom: 46px;
        padding: 58px 14px 126px;
    }
    .about-section-grid { --bs-gutter-x: 24px; }
    .about-main-card {
        width: min(100%, 430px);
        min-height: 430px;
        margin: 0 auto;
    }
    .about-main-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .about-mini-card {
        right: 16px;
        bottom: 94px;
        width: 220px;
        height: 220px;
    }
    .about-mini-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .about-shape-1 { display: none; }
    .about-shape-1 {
        width: 180px;
        height: 180px;
        top: 268px;
        left: -12px;
    }
    .about-shape-2 { right: -26px; top: 140px; width: 220px; height: 320px; }
    .about-pattern--stripes {
        left: auto;
        right: 42px;
        top: 22px;
        width: 138px;
        height: 138px;
    }
    .about-pattern--dots {
        left: 18px;
        bottom: 152px;
    }
    .request-shape { max-width: 90px; top: 5%; right: 2%; }
    .experience-wrap {
        width: min(100%, 390px);
        left: 50%;
        transform: translateX(-50%);
        padding: 20px 20px 22px;
    }
    .about-content-wrap {
        padding-right: 0;
    }
    .about-summary,
    .about-note {
        font-size: 16px;
    }
    .js-typewriter--title {
        min-height: 2.65em;
    }
    .about-brands-wrap {
        margin-top: 6px;
        padding-top: 14px;
    }
    .about-brands-copy {
        font-size: 15px;
        margin-bottom: 14px;
    }
    .cta-content { flex-direction: column; text-align: center; }
    .cta-inner-wrap .title { margin: 15px 0; text-align: center; }
    .cta-inner-wrap .cta-btn { text-align: center; }
    .overview-row {
        --bs-gutter-x: 34px;
    }
    .overview-img-wrap--gerow {
        min-height: 520px;
        padding: 68px 0 66px 34px;
    }
    .overview-visual-main {
        width: 380px;
        height: 454px;
    }
    .overview-badge {
        top: 84px;
        right: 26px;
        width: 86px;
        height: 86px;
        font-size: 38px;
    }
    .overview-floating-card {
        left: 0;
        bottom: 18px;
    }
    .overview-content--gerow {
        padding-right: 0;
    }
    .overview-content--gerow .section-title-two .title {
        font-size: 46px;
    }
    .testimonial-layout {
        --bs-gutter-x: 34px;
    }
    .testimonial-visual {
        min-height: 560px;
    }
    .testimonial-visual__blob {
        width: 446px;
        height: 372px;
    }
    .testimonial-visual__person-wrap {
        width: 446px;
        height: 372px;
    }
    .testimonial-visual__person {
        max-height: 466px;
    }
    .testimonial-slider-shell {
        padding-right: 82px;
        min-height: 328px;
    }
    .testimonial-content-shell {
        margin-left: 26px;
    }
    .footer-widget { margin-bottom: 30px; }
    .project-content-two {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
    .project-content-two .link-btn {
        position: static;
        margin-top: 16px;
    }
    .services-visual {
        min-height: 280px;
    }
    .plan-detail__card {
        flex-basis: 100%;
    }
    .features-overlap-section {
        padding-top: 42px;
        padding-bottom: 24px;
    }
}

@media (max-width: 767px) {
    .testimonial-area {
        padding-top: 78px;
        padding-bottom: 78px;
    }
    .testimonial-layout {
        --bs-gutter-x: 24px;
    }
    .testimonial-visual {
        min-height: 430px;
        margin-bottom: 26px;
    }
    .testimonial-visual__blob {
        left: 50%;
        bottom: 12px;
        width: 320px;
        height: 280px;
        transform: translateX(-50%);
        border-radius: 42% 58% 44% 56% / 56% 44% 58% 42%;
    }
    .testimonial-visual__person-wrap {
        left: 50%;
        bottom: 12px;
        width: 320px;
        height: 280px;
        transform: translateX(-50%);
    }
    .testimonial-visual__person {
        max-height: 386px;
    }
    .testimonial-pattern--dots {
        left: 8px;
        top: 112px;
        width: 92px;
        height: 92px;
    }
    .testimonial-star-shape {
        width: 52px;
        height: 52px;
        left: 5%;
        bottom: 18%;
    }
    .testimonial-heading {
        margin-bottom: 22px;
    }
    .testimonial-content-shell {
        margin-left: 0;
    }
    .testimonial-slider-shell {
        padding-right: 0;
        padding-bottom: 86px;
        min-height: auto;
    }
    .testimonial-item-two {
        padding: 12px 0 10px;
        min-height: auto;
    }
    .testimonial-content-two .rating i {
        font-size: 22px;
        margin-right: 4px;
    }
    .testimonial-quote-mark {
        font-size: 88px;
        top: 18px;
        right: 14px;
    }
    .testimonial-content-two p {
        font-size: 16px;
        max-width: 100%;
        margin-bottom: 24px;
    }
    .testimonial-avatar .avatar-thumb img {
        width: 64px;
        height: 64px;
    }
    .testimonial-nav-two {
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
    .overview-area {
        padding-top: 74px;
        padding-bottom: 74px;
    }
    .overview-row {
        --bs-gutter-x: 24px;
    }
    .overview-img-wrap--gerow {
        min-height: 470px;
        padding: 28px 0 46px;
        margin-bottom: 34px;
    }
    .overview-visual-main {
        width: min(100%, 340px);
        height: 410px;
        margin: 0 auto;
    }
    .overview-badge {
        top: 18px;
        right: 22px;
        width: 78px;
        height: 78px;
        font-size: 32px;
        border-width: 6px;
    }
    .overview-floating-card {
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: min(100%, 252px);
        padding: 18px 18px 16px;
    }
    .overview-floating-card h3 {
        font-size: 44px;
    }
    .overview-floating-card > span {
        font-size: 15px;
    }
    .overview-bars {
        gap: 12px;
    }
    .overview-bars-labels {
        gap: 10px;
        font-size: 12px;
    }
    .overview-pattern--dots {
        top: 118px;
        left: 6px;
        width: 124px;
        height: 124px;
    }
    .overview-corner-shape {
        width: 210px;
    }
    .overview-content--gerow .section-title-two .title {
        font-size: 36px;
        max-width: 100%;
    }
    .overview-content--gerow p {
        font-size: 16px;
        max-width: 100%;
    }
    .overview-metric-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .overview-metric-card {
        min-height: 104px;
    }
    .overview-metric-card .content h3 {
        font-size: 38px;
    }
    .features-item-two {
        gap: 14px;
    }
    .features-content-two p {
        width: 100%;
    }
    .about-section {
        padding-top: 28px;
    }
    .about-shape-2 {
        opacity: .12;
    }
    .about-img-wrap-three {
        padding: 42px 0 118px;
    }
    .about-main-card {
        width: min(100%, 360px);
        min-height: 382px;
        border-radius: 82px 0 0 0;
    }
    .about-main-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .about-mini-card {
        width: 188px;
        height: 188px;
        right: 0;
        bottom: 96px;
    }
    .about-mini-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .experience-wrap {
        width: min(100%, 340px);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 18px 18px 20px;
        gap: 16px;
        justify-content: flex-start;
        min-height: 132px;
    }
    .experience-wrap .title { font-size: 42px; }
    .experience-wrap p { font-size: 13px; max-width: 150px; }
    .about-author-info {
        flex-wrap: wrap;
        gap: 14px;
    }
    .about-author-info .signature {
        margin-left: 88px;
    }
    .about-brands-wrap .brand-item {
        padding: 0 14px;
    }
    .about-brands-wrap .brand-item img {
        max-height: 32px;
    }
    .services-thumb-two img,
    .services-visual { min-height: 250px; }
    .project-thumb-two {
        min-height: 250px;
        padding: 18px;
    }
    .project-thumb-two img { height: 250px; }
    .blog-post-content-two {
        padding: 24px 20px 22px;
    }
    .team-thumb-two img {
        height: 280px;
    }
    .plan-selector {
        grid-template-columns: repeat(2, 1fr);
    }
    .plan-detail__metrics {
        grid-template-columns: 1fr;
    }
    .plan-pills__header {
        gap: 6px;
    }
    .plan-pills__tab {
        flex: 1 1 calc(50% - 6px);
        justify-content: center;
    }
    .cta-progress-wrap { padding: 25px; }
    .overview-content .content-bottom ul {
        flex-direction: column;
        gap: 18px;
    }
    .faq-page .accordion-button {
        font-size: 16px;
        padding: 16px 18px;
    }
    .faq-page .accordion-body {
        padding: 0 18px 16px;
        font-size: 14px;
    }
    .features-item-wrap {
        padding-bottom: 18px;
    }
    .features-overlap-section {
        padding-top: 34px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .overview-area {
        padding-top: 84px;
        padding-bottom: 84px;
    }
    .overview-img-wrap--gerow {
        min-height: 520px;
        padding: 34px 0 52px;
        margin-bottom: 34px;
    }
    .overview-visual-main {
        width: 390px;
        height: 468px;
        margin: 0 auto;
    }
    .overview-badge {
        top: 28px;
        right: 94px;
    }
    .overview-floating-card {
        left: 80px;
        bottom: 8px;
    }
    .overview-content--gerow {
        max-width: 720px;
    }
}

@media (max-width: 575px) {
    .testimonial-visual {
        min-height: 372px;
    }
    .testimonial-visual__blob {
        width: 272px;
        height: 238px;
    }
    .testimonial-visual__person-wrap {
        width: 272px;
        height: 238px;
    }
    .testimonial-visual__person {
        max-height: 338px;
    }
    .testimonial-item-two {
        padding: 8px 0;
    }
    .testimonial-content-two .rating i {
        font-size: 20px;
    }
    .testimonial-avatar {
        gap: 12px;
    }
    .testimonial-avatar .avatar-thumb img {
        width: 56px;
        height: 56px;
    }
    .testimonial-avatar .avatar-info .title {
        font-size: 16px;
    }
    .testimonial-nav-two button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .overview-img-wrap--gerow {
        min-height: 424px;
        padding: 20px 0 44px;
    }
    .overview-visual-main {
        width: min(100%, 292px);
        height: 350px;
    }
    .overview-corner-shape {
        width: 154px;
    }
    .overview-badge {
        right: 6px;
        top: 10px;
        width: 68px;
        height: 68px;
        font-size: 27px;
    }
    .overview-floating-card {
        width: min(100%, 226px);
        border-radius: 16px;
    }
    .overview-floating-card h3 {
        font-size: 38px;
    }
    .overview-floating-card > span {
        font-size: 14px;
    }
    .overview-bars span {
        width: 8px;
    }
    .overview-metric-card {
        gap: 14px;
        padding: 18px 16px;
    }
    .overview-metric-card .icon {
        width: 58px;
        height: 58px;
        font-size: 25px;
    }
    .overview-metric-card .icon::before {
        right: -14px;
        height: 46px;
    }
    .overview-metric-card .content {
        padding-left: 8px;
    }
    .overview-metric-card .content h3 {
        font-size: 34px;
    }
    .count-suffix {
        font-size: 26px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .testimonial-visual {
        min-height: 500px;
        margin-bottom: 24px;
    }
    .testimonial-visual__blob {
        left: 50%;
        bottom: 20px;
        width: 390px;
        height: 332px;
        transform: translateX(-50%);
    }
    .testimonial-visual__person-wrap {
        left: 50%;
        bottom: 20px;
        width: 390px;
        height: 332px;
        transform: translateX(-50%);
    }
    .testimonial-visual__person {
        max-height: 432px;
    }
    .testimonial-content-shell {
        max-width: 720px;
        margin-left: 0;
    }
    .testimonial-slider-shell {
        padding-right: 0;
        padding-bottom: 92px;
    }
    .testimonial-nav-two {
        top: auto;
        bottom: 0;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
    }
}

@media (max-width: 575px) {
    .features-item-two {
        display: block;
        text-align: left;
    }
    .features-icon-two {
        margin: 0 0 16px;
        width: 70px;
        height: 70px;
    }
    .features-icon-two img {
        width: 44px;
        height: 44px;
    }
    .features-content-two .title {
        font-size: 18px;
    }
    .features-content-two p {
        max-width: none;
    }
    .about-section {
        padding-top: 24px;
    }
    .about-shape-1,
    .about-shape-2 {
        display: none;
    }
    .about-img-wrap-three {
        padding: 26px 0 112px;
    }
    .about-main-card {
        width: min(100%, 300px);
        min-height: 318px;
        border-radius: 56px 0 0 0;
    }
    .about-main-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .about-mini-card {
        width: 150px;
        height: 150px;
        right: 0;
        bottom: 102px;
        border-radius: 20px 20px 0 0;
        border-width: 7px;
    }
    .about-mini-card__person {
        width: 100%;
        height: 100%;
        max-height: none;
        object-fit: cover;
    }
    .about-pattern--stripes {
        width: 102px;
        height: 102px;
        right: 12px;
        top: 8px;
    }
    .about-pattern--dots {
        width: 72px;
        height: 72px;
        left: 4px;
        bottom: 154px;
        background-size: 14px 14px;
    }
    .experience-wrap {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 16px 16px 18px;
        border-radius: 18px;
        flex-direction: column;
        align-items: flex-start;
        width: min(100%, 280px);
    }
    .experience-wrap .title {
        font-size: 34px;
        padding-right: 0;
        margin-right: 0;
        text-align: left;
    }
    .experience-wrap .title::before {
        display: none;
    }
    .experience-wrap .title span { font-size: 18px; }
    .experience-wrap p { font-size: 12px; max-width: none; }
    .about-summary,
    .about-note,
    .elementor-icon-list-items li {
        font-size: 15px;
    }
    .js-typewriter--title {
        min-height: 2.85em;
    }
    .about-author-info .signature {
        margin-left: 0;
    }
    .about-signature {
        font-size: 24px;
    }
    .about-brands-wrap {
        margin-top: 0;
        padding-top: 10px;
    }
    .about-brands-copy {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .about-brands-wrap .brand-item {
        padding: 0 12px;
    }
    .about-brands-wrap .brand-item img {
        max-height: 28px;
    }
    .cta-inner-wrap { padding: 30px 20px; }
    .cta-inner-wrap .title { font-size: 22px; }
    .testimonial-item-two { padding: 30px 20px; }
    .footer-title { font-size: 20px; }
    .services-content-two {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    .services-content-two .title {
        font-size: 20px;
    }
    .services-content-two p {
        font-size: 14px;
    }
    .project-content-two .title {
        font-size: 18px;
    }
    .project-content-two span {
        display: block;
        padding-right: 0;
    }
    .blog-post-thumb-two {
        min-height: 210px;
    }
    .blog-post-thumb-two .tag {
        left: 14px;
        top: 14px;
    }
    .blog-post-content-two .title {
        font-size: 20px;
    }
    .team-thumb-two img {
        height: 250px;
    }
    .faq-cta__title {
        font-size: 1.8rem;
    }
    .faq-page .faq-category {
        font-size: 20px;
    }
    .plan-selector__btn {
        height: 82px;
        padding: 10px 8px;
    }
    .plan-detail__card-body {
        padding: 20px;
    }
    .plan-detail__price-val {
        font-size: 2rem;
    }
    .plan-detail__info-title {
        font-size: 18px;
    }
    .request-form-wrap input,
    .request-form-wrap button {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ============================================
   CTA PARALLAX
   ============================================ */
.cta-parallax {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='dots' width='30' height='30' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='%2300194C'/%3E%3Crect width='100%25' height='100%25' fill='url(%23dots)'/%3E%3C/svg%3E") center/cover;
    position: relative; padding: 120px 0;
}
.cta-parallax::before {
    content: ""; position: absolute; inset: 0;
    background: rgba(0,25,76,.85);
    z-index: 0;
}
.cta-parallax .container { position: relative; z-index: 1; }
.cta-parallax .section-title-two .title { color: var(--white); }
.cta-parallax p { color: rgba(255,255,255,.7); }
.cta-parallax .play-btn {
    display: flex; align-items: center; gap: 12px;
    color: var(--white); font-weight: 700; font-size: 14px;
    text-transform: uppercase; letter-spacing: .02em;
}
.cta-parallax .play-btn span { text-decoration: underline; }
.cta-parallax .play-btn i {
    width: 50px; height: 50px; display: flex;
    align-items: center; justify-content: center;
    background: var(--white); border-radius: 50%;
    color: var(--primary); font-size: 18px;
    margin-right: 12px;
    box-shadow: 0px 20px 30px rgba(0,0,0,.1);
}
.cta-parallax .play-btn:hover { color: var(--primary); }
.cta-progress-wrap {
    padding: 40px; border-radius: 12px;
    background: var(--white);
}
.cta-progress-wrap .tag {
    display: inline-block; background: var(--primary);
    color: var(--white); padding: 4px 15px;
    border-radius: 20px; font-size: 12px;
    font-weight: 600; text-transform: uppercase;
    margin-bottom: 15px;
}
.cta-progress-wrap .heading {
    color: var(--secondary); font-size: 26px; margin-bottom: 15px;
}
.cta-progress-wrap > p { color: var(--body-color); }
.cta-progress-wrap .progress-item .title { color: var(--secondary); }
.cta-progress-wrap--light {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.tag--soft {
    background: var(--lavender);
    color: var(--primary);
}

/* ============================================
   BLOG / NOTICIAS
   ============================================ */
.blog-post-thumb-two {
    position: relative; overflow: hidden;
}
.blog-post-thumb-two .tag {
    position: absolute;
    left: 18px;
    top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.blog-meta {
    display: flex; align-items: center; gap: 15px;
}
.blog-meta li {
    font-size: 13px; font-weight: 500; color: var(--body-color);
}
.blog-meta li i { margin-right: 5px; color: var(--primary); }
.blog-post-item-two {
    background: var(--white); border-radius: 12px;
    overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-post-item-two:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.blog-post-thumb-two {
    width: 100%;
    height: 240px;
    transition: transform 0.5s ease;
}
.blog-post-item-two:hover .blog-post-thumb-two {
    transform: scale(1.02);
}
.blog-post-thumb-two--guide { background: linear-gradient(135deg, #0055ff 0%, #00194c 100%); }
.blog-post-thumb-two--compare { background: linear-gradient(135deg, #324b7d 0%, #0055ff 100%); }
.blog-post-thumb-two--rights { background: linear-gradient(135deg, #0f766e 0%, #00194c 100%); }
.blog-post-content-two {
    padding: 20px 22px 22px;
}
.blog-post-content-two .title {
    font-size: 20px; margin-bottom: 10px;
}
.blog-post-content-two .title a {
    color: var(--secondary); transition: var(--transition);
}
.blog-post-content-two .title a:hover { color: var(--primary); }
.section-dark .blog-post-content-two .title a { color: var(--secondary); }

/* ---- Index News-Blog Compact Cards (4 cols) ---- */
.news-blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: transform .3s ease, box-shadow .3s ease;
    margin-bottom: 24px;
    height: calc(100% - 24px);
    display: flex;
    flex-direction: column;
}
.news-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.news-blog-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--lavender);
}
.news-blog-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    border-radius: 12px;
    z-index: 1;
    line-height: 1.5;
}
.news-blog-card__badge--news {
    background: #0f766e;
}
.news-blog-card__body {
    padding: 12px 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-blog-card__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.news-blog-card__title a:hover { color: var(--primary); }
.news-blog-card__excerpt {
    font-size: 12px;
    color: var(--body-color);
    line-height: 1.5;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-blog-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--gray-four);
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
}
.news-blog-card__meta i { color: var(--primary); font-size: 10px; }
.news-blog-card__meta .meta-source {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    font-size: 10px;
}
.news-blog-card__meta .meta-avatar {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.news-blog-card__meta .meta-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 11px;
}
/* ---- News-Blog Carousel ---- */
.news-blog-carousel {
    position: relative;
    padding: 0 48px;
}
.news-blog-carousel__viewport {
    overflow: hidden;
}
.news-blog-carousel__track {
    display: flex;
    transition: transform .45s cubic-bezier(.25,.1,.25,1);
}
.news-blog-carousel__slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Arrows */
.news-blog-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--white);
    color: var(--secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.news-blog-arrow:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,85,255,.18);
}
.news-blog-arrow:disabled {
    opacity: .3;
    cursor: default;
    box-shadow: none;
}
.news-blog-arrow--left  { left: 0; }
.news-blog-arrow--right { right: 0; }

@media (max-width: 1199px) {
    .news-blog-carousel { padding: 0 42px; }
    .news-blog-carousel__slide { gap: 14px; }
}
@media (max-width: 991px) {
    .news-blog-carousel { padding: 0 40px; }
    .news-blog-carousel__slide {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}
@media (max-width: 767px) {
    .news-blog-carousel { padding: 0 36px; }
    .news-blog-carousel__slide {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 380px;
        margin: 0 auto;
    }
    .news-blog-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }
}

/* ============================================
   PLAN SELECTOR (Tipos de Planes)
   Compact interactive: 6 small cards → split detail
   ============================================ */
.plan-section {
    padding: clamp(50px, 8vw, 100px) 0;
    background: var(--section-bg);
}
.plan-section .section-title-two { margin-bottom: 20px; }

/* ---- Selector Grid ---- */
.plan-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 960px;
    margin: 0 auto 20px;
}
@media (min-width: 768px) {
    .plan-selector { grid-template-columns: repeat(6, 1fr); }
}
.plan-selector__btn {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition);
    height: 90px;
    position: relative;
}
.plan-selector__btn:hover,
.plan-selector__btn.active {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,85,255,.15);
    transform: translateY(-3px);
}
.plan-selector__btn i {
    font-size: 24px;
    transition: var(--transition);
}
.plan-selector__icon {
    color: var(--profile-color, var(--primary));
}
.plan-selector__btn span {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-four);
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .03em;
}
.plan-selector__btn.active span { color: var(--secondary); }
.plan-selector__btn.active::after {
    content: "";
    position: absolute; bottom: 0; left: 25%; right: 25%;
    height: 3px; border-radius: 3px 3px 0 0;
    background: var(--profile-color, var(--primary));
}
.plan-selector__btn.active {
    border-color: var(--profile-color, var(--primary));
}
.plan-selector__btn.active i { color: var(--profile-color, var(--primary)); }
.features-icon-two--lg {
    width: 70px;
    height: 70px;
}
.features-icon-two--sm {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}
.features-icon-two--xs {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail-panel {
    height: 100%;
    padding: 32px 28px;
    border-radius: 16px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
}
.service-detail-panel--contrast {
    background: rgba(255,255,255,.04);
}
.service-detail-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}
.service-detail-text {
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
}
.service-detail-list {
    display: grid;
    gap: 16px;
}
.service-detail-item,
.service-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.service-detail-item .features-content-two .title,
.service-detail-card .features-content-two .title {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 6px;
}
.service-detail-item .features-content-two p,
.service-detail-card .features-content-two p {
    width: 100%;
    margin-bottom: 0;
    color: rgba(255,255,255,.72);
    font-size: 14px;
}
.service-detail-card {
    height: 100%;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.06);
}

/* ---- Fonasa compact section ---- */
#asesoria-fonasa.section-padding {
    padding-top: 92px;
    padding-bottom: 92px;
}
.fonasa-panel {
    position: relative;
    padding: 34px 34px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 22%),
        linear-gradient(135deg, #0d245c 0%, #12367f 48%, #145189 100%);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}
.fonasa-panel::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    filter: blur(4px);
}
.fonasa-visual {
    position: relative;
    min-height: 330px;
    padding: 8px 18px 48px 8px;
}
.fonasa-visual__photo {
    position: relative;
    width: min(100%, 320px);
    min-height: 320px;
    margin: 0 auto;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,255,255,.14) 0%, rgba(255,255,255,.06) 100%);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}
.fonasa-visual__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 32% 24%, rgba(126,181,255,.34) 0%, rgba(126,181,255,.08) 24%, rgba(126,181,255,0) 44%);
    animation: fonasaGlow 5s ease-in-out infinite;
}
.fonasa-visual__photo img {
    position: relative;
    z-index: 1;
    max-height: 302px;
    width: auto;
    display: block;
}
.fonasa-shape {
    position: absolute;
    pointer-events: none;
    display: block;
}
.fonasa-shape--stripes {
    width: 110px;
    height: 110px;
    top: -8px;
    right: 10px;
    opacity: .5;
    animation: aboutFloatSoft 8s ease-in-out infinite;
}
.fonasa-shape--dots {
    width: 70px;
    height: 70px;
    left: 0;
    bottom: 96px;
    opacity: .52;
    animation: aboutFloatSoftReverse 7s ease-in-out infinite;
}
.fonasa-visual__card {
    position: absolute;
    border-radius: 18px;
    padding: 14px 16px;
    line-height: 1.15;
    box-shadow: 0 18px 40px rgba(0,0,0,.2);
    backdrop-filter: blur(10px);
}
.fonasa-visual__card--primary {
    left: 8px;
    bottom: 0;
    background: linear-gradient(135deg, #1d5ef5 0%, #145189 100%);
    color: var(--white);
}
.fonasa-visual__card--secondary {
    right: 0;
    top: 22px;
    background: rgba(255,255,255,.92);
    color: var(--secondary);
}
.fonasa-visual__card .value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}
.fonasa-visual__card .label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .04em;
    max-width: 130px;
}
.fonasa-content .section-title-two {
    margin-bottom: 10px;
}
.fonasa-content .section-title-two .sub-title,
.fonasa-content .section-title-two .title,
.fonasa-content__lead,
.fonasa-content__tag {
    color: var(--white);
}
.fonasa-content .section-title-two .sub-title {
    background: rgba(255,255,255,.1);
    color: #bcd4ff;
}
.fonasa-content .section-title-two .title {
    font-size: clamp(30px, 3.8vw, 44px);
    line-height: 1.06;
}
.fonasa-content__lead {
    max-width: 640px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.fonasa-feature-card {
    height: 100%;
    padding: 16px 16px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fonasa-feature-card__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255,255,255,.12);
    color: #9dc1ff;
    font-size: 18px;
}
.fonasa-feature-card h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 0;
}
.fonasa-feature-card p {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}
.fonasa-inline-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
}
.fonasa-inline-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.86);
    font-size: 14px;
    font-weight: 500;
}
.fonasa-inline-benefits i {
    color: #8dc1ff;
}
.fonasa-content__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-top: 22px;
}
.fonasa-content__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 0;
}
.fonasa-content__tag {
    color: rgba(255,255,255,.76);
    font-size: 14px;
    font-weight: 600;
}
.fonasa-mini-metrics {
    display: flex;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.fonasa-mini-metric {
    min-width: 124px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.08);
}
.fonasa-mini-metric strong {
    display: block;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 4px;
}
.fonasa-mini-metric span {
    display: block;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1.35;
}
@keyframes fonasaGlow {
    0%, 100% { transform: scale(1) translate3d(0, 0, 0); opacity: .86; }
    50% { transform: scale(1.06) translate3d(10px, -8px, 0); opacity: 1; }
}
@media (max-width: 1199px) {
    .fonasa-panel {
        padding: 30px 28px 28px;
    }
    .fonasa-content__footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .fonasa-mini-metrics {
        justify-content: flex-start;
    }
}
@media (max-width: 991px) {
    #asesoria-fonasa.section-padding {
        padding-top: 76px;
        padding-bottom: 76px;
    }
    .fonasa-visual {
        min-height: 290px;
        padding: 0 0 42px;
    }
    .fonasa-visual__photo {
        width: min(100%, 360px);
        min-height: 300px;
    }
    .fonasa-content {
        padding-top: 8px;
    }
    .fonasa-content .section-title-two .title {
        max-width: 720px;
    }
}
@media (max-width: 767px) {
    .fonasa-panel {
        padding: 26px 20px 22px;
        border-radius: 22px;
    }
    .fonasa-visual {
        min-height: 270px;
        padding-bottom: 34px;
    }
    .fonasa-visual__photo {
        min-height: 272px;
        border-radius: 26px;
    }
    .fonasa-visual__photo img {
        max-height: 258px;
    }
    .fonasa-visual__card--secondary {
        top: 10px;
        right: 4px;
    }
    .fonasa-content .section-title-two .title {
        font-size: 30px;
    }
    .fonasa-inline-benefits {
        gap: 10px 14px;
    }
    .fonasa-inline-benefits span {
        font-size: 13px;
    }
    .fonasa-mini-metric {
        min-width: calc(50% - 5px);
    }
}
@media (max-width: 575px) {
    .fonasa-visual__card {
        padding: 12px 14px;
    }
    .fonasa-visual__card .value {
        font-size: 21px;
    }
    .fonasa-visual__card .label {
        font-size: 10px;
        max-width: 110px;
    }
    .fonasa-content__actions .btn {
        width: 100%;
        justify-content: center;
    }
    .fonasa-mini-metric {
        min-width: 100%;
    }
}

/* ---- Detail Split Layout ---- */
.plan-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .plan-detail {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Left: Detail Card */
.plan-detail__card {
    background: var(--white);
    border: 2px solid var(--profile-color, var(--primary));
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--profile-shadow, rgba(0,85,255,.1));
    overflow: hidden;
    flex: 0 0 380px;
    width: 100%;
}
@media (min-width: 768px) {
    .plan-detail__card { width: 380px; }
}
.plan-detail__card-header {
    background: var(--profile-color, var(--primary));
    color: var(--white);
    padding: 12px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.plan-detail__card-tag {
    background: rgba(255,255,255,.22);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .05em;
}
.plan-detail__card-body {
    padding: 24px 28px;
}
.plan-detail__price {
    text-align: center;
    margin-bottom: 18px;
}
.plan-detail__price-val {
    display: block;
    color: var(--profile-color, var(--primary));
    font-family: var(--heading-font);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
}
.plan-detail__price-sub {
    font-size: 13px;
    color: var(--gray-four);
    margin-top: 4px;
}
.plan-detail__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}
.plan-detail__metric {
    padding: 10px;
    background: var(--gray-two);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}
.plan-detail__metric i {
    font-size: 15px;
    margin-bottom: 4px;
    display: block;
}
.plan-detail__metric-icon {
    color: var(--profile-color, var(--primary));
}
.plan-detail__metric-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gray-three);
    font-weight: 700;
    letter-spacing: .04em;
}
.plan-detail__metric-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}
.plan-detail__metric-sub {
    font-size: 10px;
    color: var(--gray-four);
}
.plan-detail__card-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 15px 18px 15px 22px;
}

/* Right: Info + Pills */
.plan-detail__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}
.plan-detail__info-title {
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0;
}
.plan-detail__info-desc {
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
    margin-bottom: 0;
}
.plan-detail__checklist {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.plan-detail__checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
}
.plan-detail__checklist li i {
    color: var(--success);
    font-size: 16px;
    flex-shrink: 0;
}

/* Pills / Tabs for extra benefits */
.plan-pills {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}
.plan-pills__header {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.plan-pills__tab {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-four);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 7px 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.plan-pills__tab:hover {
    background: var(--lavender);
    color: var(--primary);
}
.plan-pills__tab.active {
    background: var(--lavender);
    color: var(--primary);
    border-color: var(--primary);
}
.plan-pills__tab i { font-size: 12px; }
.plan-pills__content {
    background: var(--lavender);
    border-radius: 10px;
    padding: 14px 16px;
    margin-top: 12px;
    min-height: 65px;
    font-size: 14px;
    color: var(--body-color);
    line-height: 1.6;
    animation: fadeInUpTabs .4s ease;
}
.plan-pills__content[hidden] {
    display: none;
}
@keyframes fadeInUpTabs {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   FAQ CTA (¿Tienes preguntas?) — Dark + Image + Hover Accordion
   ============================================ */
.faq-cta {
    position: relative;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.14) 0%, transparent 28%),
        radial-gradient(circle at 82% 78%, rgba(125,211,252,.18) 0%, transparent 24%),
        linear-gradient(180deg, var(--primary) 0%, var(--blue) 100%);
    color: var(--white);
    padding: clamp(40px, 6vw, 70px) 0 0;
    overflow: hidden;
}

/* ---- Abstract Shapes ---- */
.faq-cta__shapes { pointer-events: none; }
.faq-shape {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.04);
}
.faq-shape--1 {
    width: 400px; height: 400px;
    top: -120px; right: -80px;
    animation: faq-shape-drift 12s ease-in-out infinite;
}
.faq-shape--2 {
    width: 250px; height: 250px;
    bottom: -60px; left: 5%;
    animation: faq-shape-drift 15s ease-in-out infinite reverse;
}
.faq-shape--3 {
    width: 180px; height: 180px;
    top: 30%; left: -40px;
    border-radius: 30% 70% 50% 50%;
    background: rgba(255,255,255,.06);
    animation: faq-shape-morph 10s ease-in-out infinite;
}
@keyframes faq-shape-drift {
    0%   { transform: translate(0, 0); }
    33%  { transform: translate(30px, -20px); }
    66%  { transform: translate(-15px, 25px); }
    100% { transform: translate(0, 0); }
}
@keyframes faq-shape-morph {
    0%   { border-radius: 30% 70% 50% 50%; transform: rotate(0deg); }
    50%  { border-radius: 60% 40% 30% 70%; transform: rotate(15deg); }
    100% { border-radius: 30% 70% 50% 50%; transform: rotate(0deg); }
}

.faq-cta__header {
    text-align: center;
    margin-bottom: 6px;
}
.faq-cta__title {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    text-shadow: 0 10px 30px rgba(0,25,76,.28);
}
.faq-cta__subtitle {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
}

/* ---- Stage: Image + Accordion ---- */
.faq-cta__stage {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* Image + glow */
.faq-cta__img-area {
    position: absolute; inset: 0;
    display: flex; align-items: stretch; justify-content: center;
    pointer-events: none;
    transition: opacity .3s ease;
}
.faq-cta__img-area::before {
    content: "";
    position: absolute;
    left: 50%; bottom: -4%;
    width: min(500px, 82%);
    height: 480px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center,
        rgba(255,255,255,.50) 0%,
        rgba(255,255,255,.30) 24%,
        rgba(255,255,255,.14) 44%,
        rgba(255,255,255,.05) 58%,
        transparent 76%);
    border-radius: 50%;
    filter: blur(20px);
    animation: faq-glow-pulse 3.2s ease-in-out infinite;
}
@keyframes faq-glow-pulse {
    0%   { opacity: .4; transform: translateX(-50%) scale(.94); }
    50%  { opacity: .8; transform: translateX(-50%) scale(1.04); }
    100% { opacity: .4; transform: translateX(-50%) scale(.94); }
}
.faq-cta__img {
    position: relative; z-index: 1;
    width: min(340px, 100%);
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}

/* List container — hidden by default, shown on hover */
.faq-cta__list {
    position: absolute; z-index: 2;
    width: 100%; max-width: 420px;
    top: 50px; left: 50%;
    margin: 0;
    opacity: 0; visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
}
.faq-cta__stage:hover .faq-cta__img-area,
.faq-cta__stage:focus-within .faq-cta__img-area {
    opacity: .18;
}
.faq-cta__stage:hover .faq-cta__list,
.faq-cta__stage:focus-within .faq-cta__list {
    opacity: 1; visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

/* Views */
.faq-cta__view {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.faq-cta__view--active {
    display: flex;
}

/* View header (back button + title) */
.faq-cta__view-top {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 4px;
    padding: 8px 16px; border-radius: 30px;
    background: var(--white);
    border: 2px solid var(--white);
}
.faq-cta__view-title {
    margin: 0; color: var(--secondary);
    font-size: .95rem; font-weight: 700;
    letter-spacing: -.01em; line-height: 1.2;
}

/* Category buttons — solid white pill, project btn style */
.faq-cat-btn {
    width: 100%; padding: 14px 18px;
    border-radius: 30px;
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--secondary); font-weight: 700;
    font-family: var(--heading-font); font-size: .93rem;
    text-align: left; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(11,31,84,.14);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.faq-cat-btn:hover,
.faq-cat-btn:focus-visible {
    background: var(--lavender);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
}
.faq-cat-btn i {
    color: var(--primary); font-size: 13px;
    transition: transform .2s ease;
}
.faq-cat-btn:hover i {
    transform: translateX(3px);
}

/* Back button */
.faq-back-btn {
    width: 36px; height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    font-size: 14px;
    transition: background .2s ease, transform .2s ease;
}
.faq-back-btn:hover,
.faq-back-btn:focus-visible {
    background: var(--blue);
    transform: scale(1.08);
}

/* Accordion items (inside sub-views) — solid white, project style */
.faq-item {
    border-radius: 30px;
    border: 2px solid var(--white);
    background: var(--white);
    box-shadow: 0 8px 24px rgba(11,31,84,.14);
    overflow: hidden;
    transition: background .2s ease, border-color .2s ease;
}
.faq-item:hover,
.faq-item:focus-within,
.faq-item.is-open {
    border-color: rgba(0,85,255,.22);
}
.faq-item__trigger {
    width: 100%; padding: 14px 18px;
    border: 0; background: transparent;
    text-align: left; cursor: pointer;
    color: var(--secondary); font-size: .9rem; font-weight: 700;
    font-family: var(--heading-font);
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px;
    transition: color .2s ease;
}
.faq-item:hover .faq-item__trigger,
.faq-item.is-open .faq-item__trigger {
    color: var(--primary);
}
.faq-item__icon {
    color: var(--primary); flex-shrink: 0;
    font-size: 12px;
    transition: transform .22s ease;
}
.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
}
.faq-item__body {
    max-height: 0; overflow: hidden;
    padding: 0 18px;
    color: var(--body-color);
    transition: max-height .3s ease, padding .3s ease;
}
.faq-item__body p {
    margin: 0; padding: 0;
    font-size: .85rem; line-height: 1.55;
}
.faq-item.is-open .faq-item__body {
    max-height: 200px;
    padding: 0 18px 14px;
}

/* Link to full FAQ — inside list */
.faq-cta__more-link {
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 30px;
    border: 2px solid var(--white);
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: .9rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 8px 24px rgba(11,31,84,.14);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-cta__more-link:hover {
    background: var(--lavender);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.faq-cta__more-link i {
    font-size: 12px;
    transition: transform .2s ease;
}
.faq-cta__more-link:hover i {
    transform: translateX(3px);
}
/* Two-column grid */
.faq-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.faq-cta__left { position: relative; }

/* Right column: form shell */
.faq-cta__right {
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-cta__form-shell {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 36px 30px 30px;
    width: 100%;
    max-width: 440px;
    text-align: center;
}
.faq-cta__form-title {
    font-family: var(--heading-font);
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px;
}
.faq-cta__form-lead {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    margin: 0 0 22px;
}
/* Override request-form-wrap for dark background */
.faq-cta__right .request-form-wrap .form-label {
    color: rgba(255,255,255,.85);
}
.faq-cta__right .request-form-wrap input {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.2);
    color: var(--white);
}
.faq-cta__right .request-form-wrap input::placeholder {
    color: rgba(255,255,255,.45);
}
.faq-cta__right .request-form-wrap input:focus {
    border-color: var(--white);
    background: rgba(255,255,255,.16);
    box-shadow: 0 0 0 3px rgba(255,255,255,.1);
}
.faq-cta__right .request-form-wrap .form-grp {
    margin-bottom: 14px;
}
.faq-cta__right .request-form-wrap button {
    background: var(--white);
    color: var(--primary);
    margin-top: 4px;
}
.faq-cta__right .request-form-wrap button:hover {
    background: var(--lavender);
}
/* Benefits row */
.faq-cta__benefits {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 18px;
}
.faq-cta__benefits span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.75);
    display: flex; align-items: center; gap: 5px;
}
.faq-cta__benefits i {
    color: var(--white);
    font-size: 11px;
}

/* Mobile: always show accordion */
@media (max-width: 767px) {
    .faq-cta__stage { flex-direction: column; align-items: center; min-height: auto; }
    .faq-cta__img-area {
        position: relative; inset: auto;
        opacity: 1 !important;
        margin-bottom: 20px;
    }
    .faq-cta__img-area::before {
        width: min(340px, 94%); height: 340px;
    }
    .faq-cta__img { width: min(240px, 90%); }
    .faq-cta__list {
        position: relative; top: auto; left: auto;
        transform: none !important;
        opacity: 1 !important; visibility: visible !important;
        pointer-events: auto !important;
        max-width: 100%;
    }
    .faq-cta__subtitle { display: none; }
    .faq-cat-btn,
    .faq-item__trigger { font-size: .88rem; padding: 12px 14px; }
    .faq-cta__contact-fields { flex-direction: column; align-items: center; }
    .faq-cta__field { max-width: 100%; width: 100%; }
}

/* ============================================
   FINAL CTA VARIANT (Landing close)
   ============================================ */
.faq-cta--final {
    background:
        radial-gradient(circle at 22% 32%, rgba(255,255,255,.14) 0%, transparent 28%),
        radial-gradient(circle at 76% 78%, rgba(125,211,252,.16) 0%, transparent 22%),
        linear-gradient(135deg, #1f62ee 0%, #1c56d2 46%, #1a4dbf 100%);
    padding: clamp(18px, 3.4vw, 34px) 0 0;
}
.faq-cta--final .faq-shape {
    background: rgba(255,255,255,.07);
}
.faq-cta--final .faq-shape--1 {
    width: 460px;
    height: 460px;
    top: -160px;
    right: -120px;
}
.faq-cta--final .faq-shape--2 {
    width: 300px;
    height: 300px;
    left: -80px;
    bottom: -120px;
}
.faq-cta--final .faq-shape--3 {
    width: 180px;
    height: 180px;
    top: 24%;
    left: 10%;
    background: rgba(255,255,255,.08);
}
.final-cta__left,
.final-cta__right {
    position: relative;
    z-index: 2;
}
.final-cta__faq-col {
    display: flex;
    align-items: stretch;
    min-width: 0;
}
.asistente-faq {
    width: 100%;
}
.asistente-faq__shell {
    width: 100%;
    min-height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
}
.asistente-faq__header {
    width: 100%;
    min-height: auto;
    padding-top: 0;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.asistente-faq__title {
    margin: 0;
    max-width: 560px;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-align: center;
    text-wrap: balance;
    text-shadow: 0 10px 30px rgba(10, 36, 92, 0.28);
}
.asistente-faq__stage {
    position: relative;
    min-height: 420px;
    margin-top: 28px;
    margin-bottom: -14px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}
.asistente-faq__img-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
    transform: translateY(20px);
    transition: opacity .22s ease;
}
.asistente-faq__img-wrapper::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -24%;
    width: min(500px, 82%);
    height: 560px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(255,255,255,.54) 0%, rgba(255,255,255,.34) 24%, rgba(255,255,255,.16) 44%, rgba(255,255,255,.06) 58%, rgba(255,255,255,0) 76%);
    opacity: .96;
    animation: asistenteFaqGlow 3.2s ease-in-out infinite;
    border-radius: 50%;
    filter: blur(18px);
}
.asistente-faq__img {
    position: relative;
    z-index: 1;
    width: min(340px, 100%);
    max-width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
}
@keyframes asistenteFaqGlow {
    0% { opacity: .42; transform: translateX(-50%) scale(.94); }
    50% { opacity: .82; transform: translateX(-50%) scale(1.04); }
    100% { opacity: .42; transform: translateX(-50%) scale(.94); }
}
.asistente-faq__list {
    position: absolute;
    z-index: 2;
    width: 100%;
    max-width: 432px;
    top: 54px;
    left: 50%;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events: none;
}
.asistente-faq:hover .asistente-faq__img-wrapper,
.asistente-faq:focus-within .asistente-faq__img-wrapper,
.asistente-faq--active .asistente-faq__img-wrapper {
    opacity: .18;
}
.asistente-faq:hover .asistente-faq__list,
.asistente-faq:focus-within .asistente-faq__list,
.asistente-faq--active .asistente-faq__list {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}
.asistente-faq__view {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.asistente-faq__view--active {
    display: flex;
}
.asistente-faq__view-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
    min-height: 50px;
    padding: 6px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(10, 36, 92, 0.08);
}
.asistente-faq__view-title {
    margin: 0;
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.category-btn,
.asistente-faq .accordion-item {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.95);
    box-shadow: 0 14px 36px rgba(11, 31, 84, 0.16);
}
.category-btn {
    width: 100%;
    padding: 13px 17px;
    color: var(--secondary);
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: .96rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
    text-decoration: none;
}
.category-btn--link {
    color: var(--primary);
}
.category-btn:hover,
.category-btn:focus-visible,
.asistente-faq .accordion-item:hover,
.asistente-faq .accordion-item:focus-within {
    background: #e9f2ff;
    border-color: rgba(23, 100, 234, 0.22);
    color: var(--primary);
}
.btn-volver {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.26);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
    flex-shrink: 0;
}
.btn-volver:hover,
.btn-volver:focus-visible {
    background: rgba(255,255,255,.28);
    border-color: rgba(255,255,255,.4);
}
.asistente-faq .accordion-item {
    overflow: hidden;
    transition: background-color .2s ease, border-color .2s ease;
    margin: 0;
}
.asistente-faq .accordion-item__header {
    width: 100%;
    padding: 13px 17px;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--secondary);
    font-size: .93rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.asistente-faq .accordion-item__icon {
    color: var(--primary);
    transition: transform .22s ease;
    flex-shrink: 0;
}
.asistente-faq .accordion-item__content {
    max-height: 0;
    overflow: hidden;
    padding: 0 17px;
    color: var(--body-color);
    transition: max-height .24s ease, padding .24s ease;
}
.asistente-faq .accordion-item__content p {
    margin: 0;
    padding: 0;
    font-size: .88rem;
    line-height: 1.55;
}
.asistente-faq .accordion-item.is-open .accordion-item__content {
    max-height: 200px;
    padding-top: 4px;
    padding-bottom: 14px;
}
.asistente-faq .accordion-item.is-open .accordion-item__icon {
    transform: rotate(180deg);
}
.final-cta__left {
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.final-cta__heading {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
}
.final-cta__title,
.final-cta__cta-title {
    font-family: var(--heading-font);
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: .98;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    text-wrap: balance;
}
.final-cta__lead,
.final-cta__cta-lead {
    margin: 20px auto 0;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.75;
    color: rgba(255,255,255,.88);
    max-width: 580px;
}
.final-cta__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.4);
    padding-bottom: 4px;
    transition: var(--transition);
}
.final-cta__link:hover {
    color: var(--white);
    border-color: var(--white);
    transform: translateX(4px);
}
.final-cta__person-wrap {
    position: relative;
    max-width: 360px;
    margin: 24px auto 0;
}
.final-cta__person-wrap::before {
    content: "";
    position: absolute;
    inset: auto 50% -24px;
    width: 280px;
    height: 280px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255,255,255,.30) 0%, rgba(255,255,255,.12) 38%, transparent 72%);
    filter: blur(10px);
}
.final-cta__person {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    filter: grayscale(1);
}
.final-cta__right {
    min-height: 428px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding-top: 0;
}
.final-cta__cta-title {
    font-size: clamp(2.65rem, 4.2vw, 3.6rem);
}
.final-cta__btn.btn {
    width: min(100%, 350px);
    min-width: 0;
    margin-top: 30px;
    border-radius: 24px;
    padding: 18px 18px 18px 28px;
    font-size: clamp(1rem, 1.05vw, 1.12rem);
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(7, 34, 105, .22);
    overflow: hidden;
    isolation: isolate;
}
.final-cta__btn.btn.btn-white {
    background: var(--white);
    color: var(--primary);
}
.final-cta__btn.btn::before {
    width: 46px;
    height: 46px;
    background: #4c85f0;
}
.final-cta__btn.btn::after {
    margin-left: 22px;
    font-size: 11px;
}
.final-cta__btn.btn:hover {
    color: var(--white);
}
.final-cta__btn.btn:hover::before {
    width: 100%;
    background: #4c85f0;
}
.final-cta__benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
    margin-bottom: 18px;
}
.final-cta__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--white);
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.18;
    max-width: 152px;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(6px);
}
.final-cta__benefits i {
    font-size: .8rem;
}

@media (max-width: 1199px) {
    .final-cta__left,
    .final-cta__right {
        min-height: 410px;
    }
    .final-cta__btn.btn {
        width: min(100%, 340px);
    }
}

@media (max-width: 991px) {
    .final-cta__left,
    .final-cta__right {
        min-height: auto;
    }
    .asistente-faq__header,
    .final-cta__right {
        text-align: center;
        align-items: center;
    }
    .asistente-faq__title {
        text-align: center;
        max-width: 440px;
    }
    .asistente-faq__stage,
    .asistente-faq__img-wrapper {
        justify-content: center;
    }
    .asistente-faq__img-wrapper::before {
        left: 50%;
        width: min(500px, 94%);
    }
    .asistente-faq__list {
        left: 50%;
    }
    .final-cta__right {
        padding-bottom: 54px;
    }
}

@media (max-width: 767px) {
    .faq-cta--final {
        padding-top: 34px;
    }
    .final-cta__title,
    .final-cta__cta-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .final-cta__lead,
    .final-cta__cta-lead {
        font-size: 1rem;
        line-height: 1.65;
    }
    .final-cta__btn.btn {
        width: min(100%, 320px);
        min-width: 0;
        padding: 18px 24px;
        border-radius: 18px;
        font-size: 1.08rem;
    }
    .final-cta__cta-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }
    .asistente-faq__header {
        min-height: auto;
        margin-bottom: 18px;
    }
    .asistente-faq__stage {
        min-height: 350px;
        margin-top: 16px;
        margin-bottom: -8px;
    }
    .asistente-faq__list {
        top: -4px;
    }
    .asistente-faq__img {
        width: min(270px, 100%);
    }
    .category-btn,
    .asistente-faq .accordion-item__header {
        font-size: .94rem;
    }
    .final-cta__benefits {
        gap: 12px;
    }
    .final-cta__benefits span {
        width: auto;
        max-width: min(100%, 250px);
        justify-content: center;
    }
}

/* ============================================
   FAQ PAGE — Bootstrap Accordion (faq.html)
   ============================================ */
.faq-page .accordion {
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-border-radius: 12px;
    --bs-accordion-active-bg: var(--lavender);
    --bs-accordion-active-color: var(--primary);
    --bs-accordion-btn-focus-box-shadow: 0 0 0 3px rgba(0,85,255,.15);
}
.faq-page .accordion-item {
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px !important;
    overflow: hidden;
}
.faq-page .accordion-button {
    font-family: var(--heading-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary);
    padding: 18px 22px;
}
.faq-page .accordion-button:not(.collapsed) {
    background: var(--lavender);
    color: var(--primary);
}
.faq-page .accordion-button::after { background-size: 14px; }
.faq-page .accordion-body {
    font-family: var(--body-font);
    font-size: 15px;
    color: var(--body-color);
    padding: 0 22px 18px 22px;
    line-height: 1.7;
}
.faq-page .faq-category {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin: 32px 0 16px;
    padding-left: 4px;
}
.faq-page .faq-category:first-child { margin-top: 0; }
