:root {
      --purple: #3C32A3;
    --purple-2: #5b50d8;
    --purple-3: #241c77;
    --white: #fff;
    --ink: #17142b;
    --muted: #68627d;
    --soft: #f3f1ff;
    --soft-2: #faf9ff;
    --line: #e8e5f7;
    --dark: #111022;
    --radius: 28px;
    --shadow: 0 26px 70px rgba(35, 29, 97, .18);
    --shadow-soft: 0 18px 40px rgba(35, 29, 97, .09);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100% - 40px, 1180px);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand, .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 950;
    letter-spacing: -.035em;
    font-size: 1.35rem;
}

.brand-mark {
    width: 70px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    color: #fff;
    font-weight: 950;
    box-shadow: 0 14px 30px rgba(60, 50, 163, .25);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-weight: 850;
}

.nav-links .nav-link {
    color: #433e5e;
}

.nav-links .nav-link:hover {
    color: var(--purple);
}


.nav-links .nav-cta,
.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
    color: #ffffff;
    background-color: var(--purple);
    border-color: var(--purple);
}

.nav-links .nav-cta:hover {
    background-color: var(--purple-3);
    border-color: var(--purple-3);
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 950;
    border: 1px solid transparent;
    transition: .22s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 16px 30px rgba(60, 50, 163, .28);
}

.btn-white {
    background: #fff;
    color: var(--purple);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .12);
}

.btn-outline-white {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.btn-outline {
    border-color: var(--line);
    background: #fff;
    color: var(--purple);
}

.btn-small {
    padding: 11px 17px;
    font-size: .93rem;
}

.section-purple {
    background: radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .26), transparent 30%), radial-gradient(circle at 10% 80%, rgba(255, 255, 255, .16), transparent 26%), linear-gradient(135deg, var(--purple), var(--purple-3));
    color: #fff;
}

.hero {
    min-height: calc(100vh - 78px);
    display: grid;
    align-items: center;
    padding: 56px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 56px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    font-weight: 950;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .72);
}

.eyebrow.purple {
    color: var(--purple);
}

h1, h2, h3, p {
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    line-height: .95;
    letter-spacing: -.075em;
    margin-bottom: 22px;
}

.hero-text {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .82);
    max-width: 690px;
}

.hero-actions, .cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-row span {
    font-size: .86rem;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.mini-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.mini-proof div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .14);
}

.mini-proof strong {
    display: block;
    font-size: 1.3rem;
}

.mini-proof span {
    color: rgba(255, 255, 255, .75);
    font-weight: 750;
    font-size: .88rem;
}

.hero-showcase {
    position: relative;
}

.hero-photo {
    height: 590px;
    border-radius: 38px;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, .15);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

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

.hero-panel {
    position: absolute;
    left: -34px;
    bottom: 38px;
    width: min(390px, 88%);
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(18px);
    color: var(--ink);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .22);
}

.panel-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.status {
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9fff4;
    color: #078448;
    font-size: .76rem;
    font-weight: 950;
}

.ticket-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ticket-preview div {
    padding: 14px;
    border-radius: 18px;
    background: var(--soft);
}

.ticket-preview span {
    display: block;
    font-size: .76rem;
    color: var(--muted);
    font-weight: 800;
}

.ticket-preview strong {
    font-size: 1.28rem;
    color: var(--purple);
}

.floating-card {
    position: absolute;
    right: -8px;
    top: 54px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 22px 42px rgba(0, 0, 0, .20);
    font-weight: 950;
    animation: floaty 5s ease-in-out infinite reverse;
}

.floating-card span {
    display: block;
    font-size: .82rem;
    color: var(--muted);
    font-weight: 700;
}

.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
}

.stats-grid div {
    padding: 28px 18px;
    text-align: center;
}

.stats-grid strong {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--purple);
    font-weight: 950;
}

.stats-grid span {
    font-weight: 800;
    color: var(--muted);
}

.section {
    padding: 92px 0;
}

.section-light {
    background: var(--soft-2);
}

.section-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 42px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    margin-bottom: 14px;
}

.section-heading p, .muted {
    color: var(--muted);
    font-size: 1.05rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.card, .service-card, .deep-card, .contact-card, .quote-card, .security-card, .event-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.card {
    overflow: hidden;
    transition: .22s ease;
}

.card:hover, .service-card:hover, .option-card:hover, .event-tile:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(35, 29, 97, .12);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

.card-img img, .event-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.card:hover .card-img img, .event-tile:hover img {
    transform: scale(1.06);
}

.card-body, .service-card, .deep-card, .contact-card, .quote-card, .security-card {
    padding: 30px;
}

.icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--soft);
    color: var(--purple);
    font-size: 1.55rem;
    margin-bottom: 18px;
}

.feature-list {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    color: #44405c;
    font-weight: 750;
}

.feature-list li:before, .check-item:before {
    content: '✓';
    display: grid;
    place-items: center;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--purple);
    font-weight: 950;
}

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.split.reverse {
    grid-template-columns: 1.05fr .95fr;
}

.split-img {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.split-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.image-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    font-weight: 900;
    color: var(--purple);
}

.option-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: .22s ease;
}

.option-card.featured {
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    color: #fff;
}

.option-card.featured p, .option-card.featured li {
    color: rgba(255, 255, 255, .84);
}

.option-card h3 {
    font-size: 1.8rem;
    letter-spacing: -.04em;
}

.tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--purple);
    font-weight: 950;
    font-size: .78rem;
}

.option-card.featured .tag {
    background: rgba(255, 255, 255, .16);
    color: #fff;
}

.event-gallery {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 18px;
}

.event-tile {
    overflow: hidden;
    position: relative;
    min-height: 280px;
}

.event-tile.large {
    grid-row: span 2;
}

.event-tile img {
    height: 100%;
    position: absolute;
    inset: 0;
}

.event-tile:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .68));
}

.event-tile div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    z-index: 1;
    color: #fff;
}

.event-tile h3 {
    margin-bottom: 5px;
}

.event-tile p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.expertise-section {
    overflow: hidden;
    color: #fff;
    background: radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .14), transparent 28%), linear-gradient(135deg, var(--purple-3), var(--purple));
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    align-items: center;
}

.expertise-visual {
    min-height: 560px;
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    border: 8px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.expertise-visual:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(17, 16, 34, .72));
}

.expertise-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-badge {
    position: absolute;
    z-index: 1;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    background: rgba(60, 50, 163, .78);
    backdrop-filter: blur(14px);
    font-weight: 900;
}

.expertise-badge i {
    font-size: 1.65rem;
}

.expertise-content h2 {
    max-width: 620px;
    margin-bottom: 20px;
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.expertise-content > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .78);
    font-size: 1.05rem;
}

.expertise-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.expertise-points div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 88px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(255, 255, 255, .09);
    font-size: .92rem;
    font-weight: 800;
}

.expertise-points i {
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--purple);
    background: #fff;
    font-size: 1.2rem;
}

@media(max-width: 950px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .expertise-visual {
        min-height: 480px;
    }
}

@media(max-width: 720px) {
    .expertise-grid {
        gap: 34px;
    }

    .expertise-visual {
        min-height: 390px;
        border-width: 5px;
        border-radius: 28px;
    }

    .expertise-badge {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .expertise-points {
        grid-template-columns: 1fr;
    }
}

/* Cuadr&iacute;cula unificada de clientes - v11 */
.unified-clients {
    position: relative;
    overflow: hidden;
}

.unified-clients:before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91, 80, 216, .11), transparent 68%);
    pointer-events: none;
}

.unified-logo-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.unified-logo-card {
    height: 190px;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: .22s ease;
}

.unified-logo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(60, 50, 163, .24);
    box-shadow: 0 25px 55px rgba(35, 29, 97, .15);
}

.unified-logo-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .3s ease;
}

.unified-logo-card:hover img {
    transform: scale(1.04);
}

@media(max-width: 1050px) {
    .unified-logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 720px) {
    .unified-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .unified-logo-card {
        height: 145px;
        padding: 15px;
        border-radius: 20px;
    }
}

/* P&aacute;gina de clientes - v10 */
.nav-links .nav-link.active {
    color: var(--purple);
}

.clients-hero {
    overflow: hidden;
    padding: 76px 0;
    color: #fff;
    background: radial-gradient(circle at 90% 5%, rgba(255, 255, 255, .22), transparent 26%), radial-gradient(circle at 8% 90%, rgba(255, 255, 255, .12), transparent 28%), linear-gradient(135deg, var(--purple), var(--purple-3));
}

.clients-hero-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.clients-hero h1 {
    max-width: 650px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: .94;
    letter-spacing: -.07em;
}

.clients-hero-text {
    max-width: 680px;
    color: rgba(255, 255, 255, .8);
    font-size: 1.1rem;
}

.clients-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.clients-trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: .84rem;
    font-weight: 850;
}

.clients-hero-visual {
    position: relative;
    height: 580px;
    overflow: hidden;
    border: 9px solid rgba(255, 255, 255, .14);
    border-radius: 38px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, .3);
}

.clients-hero-visual:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(18, 14, 61, .7));
}

.clients-hero-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-visual-card {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 22px;
    background: rgba(60, 50, 163, .8);
    backdrop-filter: blur(15px);
    font-weight: 900;
}

.clients-visual-card div {
    display: flex;
    gap: 8px;
}

.clients-visual-card i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--purple);
    background: #fff;
}

.client-sector-strip {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.client-sector-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.client-sector-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px 12px;
    color: #4b4566;
    font-weight: 850;
}

.client-sector-grid i {
    color: var(--purple);
    font-size: 1.35rem;
}

.clients-current {
    background: var(--soft-2);
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.client-logo-card {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: .22s ease;
}

.client-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(35, 29, 97, .14);
}

.client-status {
    display: inline-flex;
    margin-bottom: 15px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #087849;
    background: #e8fff3;
    font-size: .7rem;
    font-weight: 950;
}

.logo-frame {
    height: 130px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}

.logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.client-logo-card h3 {
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.client-logo-card p {
    margin: 0;
    color: var(--muted);
    font-size: .86rem;
}

.client-partnership-section {
    background: #fff;
}

.client-partnership-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 58px;
    align-items: center;
}

.client-partnership-grid h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem);
    line-height: 1.02;
    letter-spacing: -.05em;
}

.client-partnership-photo {
    position: relative;
    height: 590px;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: var(--shadow);
}

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

.client-partnership-photo > div {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 20px;
    border-radius: 22px;
    color: var(--purple);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
}

.client-partnership-photo strong, .client-partnership-photo span {
    display: block;
}

.client-partnership-photo span {
    color: var(--muted);
    font-size: .85rem;
}

.client-value-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.client-value-list > div {
    display: flex;
    gap: 13px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--soft-2);
}

.client-value-list i {
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #fff;
    background: var(--purple);
}

.client-value-list span {
    color: var(--muted);
    font-size: .86rem;
}

.client-value-list strong {
    display: block;
    color: var(--ink);
}

.former-clients-section {
    color: #fff;
    background: radial-gradient(circle at 95% 0%, rgba(255, 255, 255, .12), transparent 26%), linear-gradient(135deg, var(--dark), var(--purple-3));
}

.former-heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 38px;
}

.former-heading h2 {
    margin-bottom: 0;
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.former-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.former-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.former-logo-grid article {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
}

.former-logo-grid img {
    width: 100%;
    height: 95px;
    object-fit: contain;
    border-radius: 14px;
}

.former-logo-grid span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .7);
    text-align: center;
    font-size: .78rem;
    font-weight: 800;
}

.client-results-section {
    background: var(--soft-2);
}

.client-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.client-results-grid article {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.client-results-grid i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    font-size: 1.3rem;
}

.client-results-grid p {
    margin-bottom: 0;
    color: var(--muted);
}

.clients-cta {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 30px;
    align-items: center;
    padding: 50px;
    border-radius: 40px;
    color: #fff;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .22), transparent 30%), linear-gradient(135deg, var(--purple), var(--purple-2));
    box-shadow: var(--shadow);
}

.clients-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.05em;
}

.clients-cta p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .78);
}

.cta-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--purple);
    background: #fff;
    font-size: 1.45rem;
}

@media(max-width: 1050px) {
    .clients-hero-grid, .client-partnership-grid, .former-heading, .clients-cta {
        grid-template-columns: 1fr;
    }

    .client-logo-grid, .former-logo-grid, .client-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-hero-visual {
        height: 470px;
    }
}

@media(max-width: 720px) {
    .clients-hero {
        padding: 46px 0;
    }

    .clients-hero h1 {
        font-size: 2.6rem;
        letter-spacing: -.045em;
    }

    .clients-hero-grid {
        gap: 36px;
    }

    .clients-hero-visual {
        height: 360px;
        border-width: 5px;
        border-radius: 28px;
    }

    .clients-visual-card {
        right: 15px;
        bottom: 15px;
        left: 15px;
        align-items: flex-start;
        flex-direction: column;
    }

    .client-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-sector-grid div:last-child {
        grid-column: 1 / -1;
    }

    .client-logo-grid, .former-logo-grid, .client-results-grid, .client-value-list {
        grid-template-columns: 1fr;
    }

    .client-partnership-photo {
        height: 400px;
    }

    .former-heading {
        gap: 18px;
    }

    .clients-cta {
        padding: 30px;
        border-radius: 28px;
    }
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.security-card {
    position: relative;
    overflow: hidden;
}

.security-card:before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--soft);
}

.security-card .icon, .security-card h3, .security-card p, .security-card ul {
    position: relative;
}

.steps {
    display: grid;
    gap: 16px;
}

.step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.step-num, .timeline-number {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--purple);
    color: #fff;
    font-weight: 950;
}

.timeline {
    position: relative;
    display: grid;
    gap: 18px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 26px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--line);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
}

.timeline-number {
    z-index: 1;
}

.timeline-box {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.check-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: var(--soft);
    font-weight: 800;
    color: #3b3659;
}

.cta-band {
    border-radius: 40px;
    padding: 48px;
    background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .26), transparent 32%), linear-gradient(135deg, var(--purple), var(--purple-2));
    color: #fff;
    display: grid;
    grid-template-columns: 1.4fr .8fr;
    gap: 24px;
    align-items: center;
    box-shadow: var(--shadow);
}

.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    margin-bottom: 12px;
}

.cta-band p {
    color: rgba(255, 255, 255, .82);
    margin-bottom: 0;
}

.cta-actions {
    justify-content: flex-end;
}

.page-hero {
    padding: 88px 0;
    background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, .24), transparent 30%), linear-gradient(135deg, var(--purple), var(--purple-2));
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -.06em;
    max-width: 960px;
}

.page-hero p {
    max-width: 800px;
    color: rgba(255, 255, 255, .84);
    font-size: 1.12rem;
}

.page-hero .hero-actions {
    margin-top: 24px;
}

.logo-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.logo-item {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    text-align: center;
    font-weight: 950;
    color: var(--purple);
}

.faq {
    display: grid;
    gap: 14px;
}

.faq details {
    padding: 22px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.faq summary {
    font-weight: 900;
    cursor: pointer;
    color: var(--ink);
}

.faq p {
    margin: 12px 0 0;
    color: var(--muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 16px;
}

.contact-card strong {
    display: block;
    font-size: 1.35rem;
    color: var(--purple);
}

.contact-card a {
    font-weight: 950;
    color: var(--purple);
}

.info-panel {
    padding: 36px;
    border-radius: 34px;
    background: linear-gradient(135deg, var(--soft), #fff);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.info-panel ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.info-panel li {
    display: flex;
    gap: 10px;
    font-weight: 800;
    color: #423d5e;
}

.info-panel li:before {
    content: '•';
    color: var(--purple);
    font-size: 1.3rem;
    line-height: 1;
}

.comparison {
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: #fff;
}

.comparison table {
    width: 100%;
    border-collapse: collapse;
}

.comparison th, .comparison td {
    padding: 18px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.comparison th {
    background: var(--soft);
    color: var(--purple);
    font-weight: 950;
}

.comparison tr: last-child td {
    border-bottom: 0;
}

.site-footer {
    background: var(--dark);
    color: #fff;
    padding: 68px 0 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .85fr .85fr .85fr 1.1fr;
    gap: 30px;
}

.footer-brand p, .footer-col a, .footer-col p {
    color: rgba(255, 255, 255, .68);
}

.footer-col h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    margin: 10px 0;
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-contact a {
    color: #fff;
    font-weight: 900;
}

.footer-bottom {
    margin-top: 46px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .58);
    font-size: .92rem;
}

.mini-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.more-tile {
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
}

.more-tile:after {
    background: radial-gradient(circle at 85% 10%, rgba(255, 255, 255, .25), transparent 32%);
}

.more-tile div {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
}

.more-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .16);
    font-size: 1.6rem;
}

.platform-section {
    background: #fff;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.platform-card {
    min-height: 220px;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--soft-2);
    transition: .22s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.platform-card > i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    font-size: 1.25rem;
}

.platform-card h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.platform-card p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.dashboard-section {
    background: var(--soft-2);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 54px;
    align-items: center;
}

.dashboard-copy h2, .innovation-grid h2, .faq-intro h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    line-height: 1.04;
    letter-spacing: -.05em;
}

.dashboard-mock {
    padding: 18px;
    border: 8px solid #fff;
    border-radius: 34px;
    color: var(--ink);
    background: #f2f0fb;
    box-shadow: var(--shadow);
}

.mock-top, .chart-head, .mock-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mock-top {
    padding: 8px 8px 18px;
    color: var(--purple);
    font-weight: 900;
}

.mock-top small {
    color: var(--muted);
}

.mock-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.mock-metrics div, .mock-chart, .mock-bottom {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.mock-metrics div {
    position: relative;
    padding: 16px;
}

.mock-metrics span, .mock-metrics strong {
    display: block;
}

.mock-metrics span {
    color: var(--muted);
    font-size: .75rem;
    font-weight: 800;
}

.mock-metrics strong {
    margin-top: 5px;
    font-size: .94rem;
}

.mock-metrics i {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--purple);
}

.mock-chart {
    margin-top: 10px;
    padding: 20px;
}

.chart-head span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #078448;
    background: #e9fff4;
    font-size: .7rem;
    font-weight: 900;
}

.bars {
    height: 210px;
    display: flex;
    align-items: end;
    gap: 12px;
    padding-top: 24px;
    border-bottom: 1px solid var(--line);
}

.bars i {
    flex: 1;
    min-height: 20px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(180deg, var(--purple-2), var(--purple));
}

.mock-bottom {
    margin-top: 10px;
    padding: 16px;
    justify-content: space-around;
    color: #494364;
    font-size: .82rem;
    font-weight: 800;
}

.mock-bottom i {
    color: var(--purple);
}

.innovation-section {
    color: #fff;
    background: radial-gradient(circle at 5% 10%, rgba(255, 255, 255, .13), transparent 25%), linear-gradient(135deg, var(--purple-3), var(--purple));
}

.innovation-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.innovation-grid > div:first-child > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .76);
}

.innovation-list {
    display: grid;
    gap: 12px;
}

.innovation-list div {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .09);
}

.innovation-list i {
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    color: var(--purple);
    background: #fff;
    font-size: 1.2rem;
}

.innovation-list strong {
    display: block;
}

.resale-visual {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border-radius: 36px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .18), transparent 32%), linear-gradient(135deg, var(--purple), var(--purple-3));
    box-shadow: var(--shadow);
}

.resale-ticket {
    position: absolute;
    width: 230px;
    padding: 24px;
    border-radius: 24px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .24);
}

.resale-ticket-one {
    top: 90px;
    left: 34px;
    transform: rotate(-7deg);
}

.resale-ticket-two {
    right: 34px;
    bottom: 100px;
    transform: rotate(7deg);
}

.resale-ticket span, .resale-ticket small {
    display: block;
}

.resale-ticket span {
    color: var(--purple);
    font-size: .7rem;
    font-weight: 950;
    letter-spacing: .12em;
}

.resale-ticket strong {
    display: block;
    margin: 18px 0 28px;
    font-size: 2rem;
}

.resale-ticket small {
    padding-top: 16px;
    border-top: 1px dashed var(--line);
    color: var(--muted);
    font-weight: 800;
}

.resale-transfer {
    position: absolute;
    top: 46%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    font-size: .8rem;
    font-weight: 900;
}

.resale-transfer i {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin: 0 auto 8px;
    border-radius: 50%;
    color: var(--purple);
    background: #fff;
    font-size: 1.6rem;
}

.resale-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    padding: 14px 18px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    text-align: center;
    font-weight: 850;
}

.impact-section {
    color: #fff;
    background: var(--dark);
}

.impact-heading p {
    color: rgba(255, 255, 255, .7);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.impact-grid div {
    padding: 30px 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 26px;
    background: rgba(255, 255, 255, .06);
    text-align: center;
}

.impact-grid i {
    display: block;
    margin-bottom: 12px;
    color: #a69fff;
    font-size: 1.8rem;
}

.impact-grid strong, .impact-grid span {
    display: block;
}

.impact-grid strong {
    font-size: 2.4rem;
    letter-spacing: -.05em;
}

.impact-grid span {
    color: rgba(255, 255, 255, .68);
    font-weight: 750;
}

.faq-section {
    background: var(--soft-2);
}

.faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 112px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 0 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.faq-list summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-weight: 900;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    color: var(--purple);
    transition: .2s ease;
}

.faq-list details[open] summary i {
    transform: rotate(45deg);
}

.faq-list details p {
    margin: -2px 0 22px;
    color: var(--muted);
}

@keyframes floaty {
    0%, 100% {
        transform: translateY(0);
    }

50% {
        transform: translateY(-12px);
    }

}

@media(prefers-reduced-motion: reduce) {
    * {
        animation: none!important;
        transition: none!important;
    }

html {
        scroll-behavior: auto;
    }

}

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

.footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

.hero-grid {
        gap: 38px;
    }

.security-grid {
        grid-template-columns: 1fr 1fr;
    }

.event-gallery {
        grid-template-columns: 1fr 1fr;
    }

.event-tile.large {
        grid-row: auto;
    }

}

@media(max-width: 950px) {
    .hero {
        min-height: auto;
    }

.hero-grid, .split, .split.reverse, .cta-band, .grid-2, .contact-grid {
        grid-template-columns: 1fr;
    }

.hero-photo {
        height: 390px;
    }

.hero-panel {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -80px;
    }

.floating-card {
        right: 12px;
    }

.grid-3 {
        grid-template-columns: 1fr 1fr;
    }

.footer-grid {
        grid-template-columns: 1fr 1fr;
    }

.cta-actions {
        justify-content: flex-start;
    }

.stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

.navbar {
        height: 70px;
    }

.nav-toggle-label {
        display: block;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--soft);
        position: relative;
    }

.nav-toggle-label span, .nav-toggle-label:before, .nav-toggle-label:after {
        content: '';
        position: absolute;
        left: 11px;
        right: 11px;
        height: 2px;
        background: var(--purple);
        transition: .2s;
    }

.nav-toggle-label span {
        top: 20px;
    }

.nav-toggle-label:before {
        top: 14px;
    }

.nav-toggle-label:after {
        top: 26px;
    }

.nav-links {
        position: absolute;
        top: 70px;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 18px;
        box-shadow: var(--shadow);
    }

.nav-toggle:checked~.nav-links {
        display: flex;
    }

.hero {
        padding: 34px 0 42px;
    }

.hero h1 {
        font-size: 2.35rem;
        letter-spacing: -.045em;
    }

.hero-text {
        font-size: 1rem;
    }

.mini-proof {
        grid-template-columns: 1fr;
    }

.hero-photo {
        height: 310px;
        border-width: 6px;
    }

.section {
        padding: 64px 0;
    }

.grid-3, .grid-4, .footer-grid, .logo-strip, .check-grid, .security-grid, .event-gallery {
        grid-template-columns: 1fr;
    }

.stats-grid {
        grid-template-columns: 1fr 1fr;
    }

.card-img {
        height: 190px;
    }

.split-img img {
        height: 340px;
    }

.cta-band {
        padding: 30px;
        border-radius: 28px;
    }

.footer-bottom {
        display: block;
    }

.mini-links {
        margin-top: 12px;
    }

.page-hero {
        padding: 62px 0;
    }

.timeline:before {
        display: none;
    }

.comparison {
        overflow-x: auto;
    }

.comparison table {
        min-width: 720px;
    }

}

@media(max-width: 1050px) {
    .platform-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .dashboard-grid, .innovation-grid, .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 720px) {
    .platform-grid, .mock-metrics, .impact-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        min-height: auto;
    }

    .dashboard-grid, .innovation-grid, .faq-layout {
        gap: 34px;
    }

    .mock-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .bars {
        height: 150px;
        gap: 7px;
    }

    .resale-visual {
        min-height: 520px;
    }

    .resale-ticket {
        width: 190px;
        padding: 18px;
    }

    .resale-ticket-one {
        top: 55px;
        left: 18px;
    }

    .resale-ticket-two {
        right: 18px;
        bottom: 95px;
    }

    .resale-transfer {
        top: 48%;
    }

    .faq-list details {
        padding: 0 18px;
    }
}
