@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

:root {
    --navy: #0A0F1E;
    --navy2: #0D1B3E;
    --blue: #3B82F6;
    --blue2: #1D4ED8;
    --gold: #F59E0B;
    --gold2: #D97706;
    --green: #10B981;
    --white: #F8FAFC;
    --gray: #94A3B8;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.15;
    text-wrap: balance
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .3s;
    background: transparent
}

nav.scrolled {
    background: rgba(10, 15, 30, .95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4)
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none
}

.nav-logo img {
    height: 70px;
    filter: brightness(10)
}

.nav-logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white)
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--white)
}

.nav-cta {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: .9rem;
    transition: all .2s
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, .4)
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hamburger {
        display: flex
    }
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A0F1E 0%, #0D1B3E 50%, #0A1628 100%)
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float linear infinite
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0
    }

    10% {
        opacity: 1
    }

    90% {
        opacity: 1
    }

    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(59, 130, 246, .15);
    border: 1px solid rgba(59, 130, 246, .3);
    color: var(--blue);
    padding: .4rem 1rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1.5rem
}

.hero-badge span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    animation: pulse 2s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.5)
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--blue), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    color: #fff;
    padding: .85rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all .3s;
    border: none;
    cursor: pointer;
    font-size: 1rem
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, .5)
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: .85rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all .3s;
    font-size: 1rem
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem
}

.hero-stat strong {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold)
}

.hero-stat span {
    font-size: .8rem;
    color: var(--gray)
}

.hero-visual {
    position: relative
}

.hero-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    animation: float-card 6s ease-in-out infinite
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-15px)
    }
}

.products-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem
}

.prod-mini {
    background: rgba(59, 130, 246, .1);
    border: 1px solid rgba(59, 130, 246, .2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all .3s
}

.prod-mini:hover {
    background: rgba(59, 130, 246, .2);
    transform: scale(1.03)
}

.prod-mini .icon {
    font-size: 1.8rem;
    margin-bottom: .4rem
}

.prod-mini h4 {
    font-size: .8rem;
    font-weight: 700
}

.prod-mini p {
    font-size: .7rem;
    color: var(--gray)
}

section {
    padding: 6rem 2rem
}

.container {
    max-width: 1280px;
    margin: 0 auto
}

.section-badge {
    display: inline-block;
    background: rgba(59, 130, 246, .12);
    color: var(--blue);
    padding: .3rem .9rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1rem
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem
}

.section-sub {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 600px
}

#productos {
    background: var(--navy2);
    overflow: hidden
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left 30s linear infinite;
    width: max-content
}

.carousel-track:hover {
    animation-play-state: paused
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.prod-card {
    flex-shrink: 0;
    width: 320px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s
}

.prod-card:hover {
    border-color: var(--blue);
    background: rgba(59, 130, 246, .08);
    transform: translateY(-5px)
}

.prod-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem
}

.prod-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .6rem
}

.prod-card p {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.6
}

.prod-tag {
    display: inline-block;
    background: rgba(16, 185, 129, .1);
    color: var(--green);
    padding: .2rem .7rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    margin-top: 1rem
}

.prod-card-clickable {
    cursor: pointer;
}

#stats {
    background: linear-gradient(135deg, var(--blue2), #1e3a8a);
    padding: 4rem 2rem
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif
}

.stat-label {
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    margin-top: .25rem
}

#servicios {
    background: var(--navy)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.service-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .35s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, .07), transparent);
    opacity: 0;
    transition: opacity .35s
}

.service-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
}

.service-card:hover::before {
    opacity: 1
}

.service-num {
    font-size: .75rem;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .75rem
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .75rem
}

.service-card p {
    color: var(--gray);
    font-size: .9rem;
    line-height: 1.65
}

.service-card-clickable {
    cursor: pointer;
}

.service-card-clickable:hover {
    border-color: var(--green);
    /* Cambia el borde a verde en hover */
}

.service-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: .4rem 1rem;
    background: rgba(16, 185, 129, .05);
    border: 1px solid rgba(16, 185, 129, .2);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--green);
    transition: all .3s;
    opacity: 0.7;
}

.service-card-clickable:hover .service-badge {
    background: rgba(16, 185, 129, .15);
    border-color: rgba(16, 185, 129, .4);
    opacity: 1;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, .2);
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap
}

.service-wa {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(37, 211, 102, .12);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, .25);
    padding: .3rem .85rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s
}

.service-wa:hover {
    background: rgba(37, 211, 102, .25);
    border-color: #25D366;
    transform: translateY(-1px)
}

#equipo {
    background: var(--navy2)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem
}

.team-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s
}

.team-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px)
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border: 3px solid transparent
}

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: .35rem
}

.team-role {
    color: var(--gold);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem
}

.team-bio {
    color: var(--gray);
    font-size: .85rem;
    line-height: 1.6
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    display: block;
    border: 3px solid var(--gold)
}

#contacto {
    background: var(--navy)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem
}

.contact-info p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem
}

.contact-item .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(59, 130, 246, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.contact-item strong {
    display: block;
    font-size: .9rem;
    font-weight: 700
}

.contact-item span {
    font-size: .85rem;
    color: var(--gray)
}

.contact-form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.form-group {
    margin-bottom: 1.25rem
}

.form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .05em
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .8rem 1rem;
    color: var(--white);
    font-size: .92rem;
    font-family: 'Inter', sans-serif;
    transition: border-color .2s;
    outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue)
}

.form-group select option {
    background: #0D1B3E
}

.form-group textarea {
    resize: vertical;
    min-height: 100px
}

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    background: #25D366;
    color: #fff;
    padding: .85rem 1.75rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: all .3s
}

.wa-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, .3)
}

footer {
    background: #050A14;
    border-top: 1px solid var(--border)
}

.footer-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem
}

.footer-brand h2 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: .75rem
}

.footer-brand p {
    color: var(--gray);
    font-size: .88rem;
    line-height: 1.65;
    max-width: 300px
}

.footer-social {
    display: flex;
    gap: .75rem;
    margin-top: 1.5rem
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all .2s;
    color: var(--gray)
}

.footer-social a:hover {
    background: var(--blue);
    color: #fff
}

.footer-col h4 {
    font-size: .85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1.25rem
}

.footer-col ul {
    list-style: none
}

.footer-col ul li {
    margin-bottom: .6rem
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s
}

.footer-col ul li a:hover {
    color: var(--white)
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem
}

.footer-bottom p {
    color: var(--gray);
    font-size: .82rem
}

.footer-legal {
    display: flex;
    gap: 1.5rem
}

.footer-legal a {
    color: var(--gray);
    font-size: .82rem;
    text-decoration: none;
    transition: color .2s
}

.footer-legal a:hover {
    color: var(--white)
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .65s cubic-bezier(.25, .8, .25, 1)
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hero-visual {
        order: -1
    }

    .hero-sub {
        max-width: 100%
    }

    .hero-btns {
        justify-content: center
    }

    .hero-stats {
        justify-content: center
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    section {
        padding: 4rem 1.25rem
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-main {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .team-grid {
        grid-template-columns: 1fr
    }
}

/* ── CÓMO TRABAJAMOS ────────────────────────────────────────── */
#proceso {
    background: var(--navy2)
}

.proceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative
}

.proceso-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--gold), transparent);
    opacity: .3;
    pointer-events: none
}

.paso-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s;
    position: relative
}

.paso-card:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4)
}

.paso-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0 auto 1.25rem;
    border: 2px solid var(--border);
    position: relative
}

.paso-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: .6rem
}

.paso-card p {
    color: var(--gray);
    font-size: .88rem;
    line-height: 1.6
}

.paso-duration {
    display: inline-block;
    background: rgba(245, 158, 11, .1);
    color: var(--gold);
    padding: .2rem .75rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    margin-top: 1rem
}

/* ── POR QUÉ NOSOTROS ───────────────────────────────────────── */
#porque {
    background: var(--navy)
}

.porque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem
}

.porque-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid var(--border)
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .35rem
}

.feature-item p {
    color: var(--gray);
    font-size: .88rem;
    line-height: 1.6
}

.porque-img {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.porque-img img {
    width: 100%;
    border-radius: 20px;
    opacity: .85
}

.porque-badge {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem
}

.porque-badge strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gold)
}

.porque-badge span {
    font-size: .78rem;
    color: var(--gray)
}

@media(max-width:1024px) {
    .porque-grid {
        grid-template-columns: 1fr
    }

    .porque-img {
        order: -1
    }
}

/* ── TESTIMONIALES ──────────────────────────────────────────── */
#testimonios {
    background: var(--navy2);
    overflow: hidden
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem
}

.testi-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all .3s
}

.testi-card:hover {
    border-color: rgba(245, 158, 11, .3);
    transform: translateY(-4px)
}

.testi-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem
}

.testi-quote {
    font-size: .95rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 3px solid var(--blue)
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .75rem
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    flex-shrink: 0
}

.testi-author strong {
    font-size: .9rem;
    font-weight: 700;
    display: block
}

.testi-author span {
    font-size: .78rem;
    color: var(--gray)
}

/* ── TRUST BANNER ───────────────────────────────────────────── */
#trust {
    background: linear-gradient(135deg, #0A1628, #0D1B3E);
    padding: 3rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border)
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    opacity: .6;
    transition: opacity .2s
}

.trust-item:hover {
    opacity: 1
}

.trust-item span {
    font-size: 1.3rem
}

.trust-item p {
    font-size: .85rem;
    font-weight: 600;
    color: var(--white)
}

/* ── DIFFERENTIATOR PILLS ───────────────────────────────────── */
.diff-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.75rem
}

.diff-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: .4rem 1rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    transition: all .2s;
    letter-spacing: .01em
}

.diff-pill:hover {
    background: rgba(59, 130, 246, .12);
    border-color: rgba(59, 130, 246, .4);
    transform: translateY(-1px)
}

.diff-pill--gold {
    background: rgba(245, 158, 11, .1);
    border-color: rgba(245, 158, 11, .3);
    color: var(--gold)
}

.diff-pill--gold:hover {
    background: rgba(245, 158, 11, .2);
    border-color: var(--gold)
}

/* ── GLOBAL TEXT POLISH ─────────────────────────────────────── */
.section-sub {
    text-align: left;
    line-height: 1.8
}

.service-card p {
    text-align: left;
    line-height: 1.75
}

.paso-card p {
    text-align: left;
    line-height: 1.75
}

.testi-quote {
    text-align: left
}

.testi-author span {
    text-align: left;
    display: block
}

.team-bio {
    text-align: left !important;
    line-height: 1.75
}

.contact-info p {
    text-align: left;
    line-height: 1.8
}

.contact-item span {
    text-align: left;
    display: block
}

.footer-brand p {
    text-align: left;
    line-height: 1.75
}

.feature-item p {
    text-align: left;
    line-height: 1.75
}