:root {
    --p: #523493;
    --p-dk: #3b2470;
    --p-lt: #6b45c0;
    --p-xs: #f0ebfa;
    --p-sm: #e0d5f5;
    --ink: #1a1035;
    --ink2: #2d2150;
    --slate: #5b5478;
    --muted: #9490a8;
    --border: #e8e0f5;
    --light: #f7f5fd;
    --white: #fff;
}

*,*::before,*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

/* ══ HERO ══ */
.hero {
    background: var(--color-grad);
    padding: 64px 60px 0;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 540px;
    height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255,255,255,.07) 0%,transparent 70%);
    pointer-events: none
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: radial-gradient(ellipse 60% 50% at 40% 100%,rgba(196,181,253,.1) 0%,transparent 70%);
    pointer-events: none
}

.g {
    position: absolute;
    pointer-events: none
}

.g1 {
    top: 26px;
    left: 6%;
    width: 17px;
    height: 17px;
    border: 2px solid rgba(255,255,255,.18);
    border-radius: 4px;
    transform: rotate(20deg)
}

.g2 {
    top: 68px;
    left: 19%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,.15)
}

.g3 {
    top: 42px;
    right: 36%;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,.13);
    transform: rotate(45deg)
}

.g4 {
    top: 130px;
    left: 3%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.1)
}

.g5 {
    top: 50px;
    right: 14%;
    width: 11px;
    height: 11px;
    border: 2px solid rgba(255,255,255,.15);
    transform: rotate(15deg)
}

.g6 {
    bottom: 120px;
    right: 8%;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,.1);
    border-radius: 4px;
    transform: rotate(30deg)
}

.g7 {
    bottom: 150px;
    left: 28%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.1)
}

.hero-inner {
    max-width: 80vw;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding-bottom: 60px
}

.h-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 100px;
    padding: 5px 16px 5px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin-bottom: 20px
}

.h-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4b5fd;
    animation: blink 2s infinite
}

@keyframes blink {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .3;
        transform: scale(1.6)
    }
}

.hero h1 {
    font-family: 'Space Grotesk',sans-serif;
    font-size: clamp(36px,5vw,58px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 16px
}

.hero h1 em {
    font-style: normal;
    color: #c4b5fd
}

.hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.55);
    line-height: 1.85;
    max-width: 540px;
    margin: 0 auto
}

.hero-wave {
    line-height: 0;
    margin-top: -1px
}

.hero-wave svg {
    display: block;
    width: 100%
}

/* ══ WHY US SPLIT ══ */
.why-sec {
    padding: 80px 0px;
    padding-bottom: 0px;
    background: var(--white)
}

.why-inner {
    max-width: 80vw;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.why-left {
}

.wl-ey {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 8px
}

.wl-title {
    font-family: 'Space Grotesk',sans-serif;
    font-size: clamp(26px,3vw,38px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 20px
}

.wl-body {
    font-size: 15px !important;
    color: var(--slate);
    line-height: 1.85
}

.wl-body p+p {
    margin-top: 14px
}

/* stat pills */
.wl-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px
}

.wl-stat {
    background: var(--color-bg);
    border: 1.5px solid var(--color-bg-border);
    border-radius: 14px;
    padding: 18px 16px;
    text-align: center;
    transition: all .25s
}

.wl-stat:hover {
    border-color: rgba(82,52,147,.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(82,52,147,.07)
}

.wl-stat-n {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--p);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 0;
}

.wl-stat-l {
    font-size: 15px;
    color: var(--slate);
    margin-top: 4px;
    font-weight: 500
}

/* right: benefits */
.why-right {
}

.wr-ey {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 8px
}

.wr-title {
    font-family: 'Space Grotesk',sans-serif;
    font-size: clamp(22px,2.4vw,30px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.8px;
    line-height: 1.1;
    margin-bottom: 24px
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border)
}

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

.benefit:first-child {
    padding-top: 0
}

.b-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--color-bg);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all .25s
}

.b-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--p);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.benefit:hover .b-icon {
    background: var(--p)
}

.benefit:hover .b-icon svg {
    stroke: #fff
}

.b-text {
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.65
}

.b-text strong {
    color: var(--ink);
    font-weight: 700
}

/* ══ FEATURES GRID ══ */
.feat-sec {
    padding: 60px 0;
    background: var(--white)
}

.feat-inner {
    max-width: 80vw;
    margin: 0 auto
}

.feat-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 56px
}

.feat-ey {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 8px
}

.feat-title {
    font-family: 'Space Grotesk',sans-serif;
    font-size: clamp(24px,2.8vw,36px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 8px
}

.feat-sub {
    font-size: 16px;
    color: var(--slate);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 44px
}

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

.feat-card {
    border: 1.5px solid var(--color-bg-border);
    border-radius: 20px;
    padding: 28px 22px;
    background: var(--color-bg);
    transition: all .28s;
    position: relative;
    overflow: hidden;
    grid-column: span 2
}
.feat-grid .feat-card:nth-last-child(2),
.feat-grid .feat-card:last-child {
    grid-column: span 3;
}
.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    opacity: 0;
    transition: opacity .25s
}

.fc-a::before {
    background: linear-gradient(90deg,#f59e0b,#fbbf24)
}

.fc-b::before {
    background: linear-gradient(90deg,var(--p),var(--p-lt))
}

.fc-c::before {
    background: linear-gradient(90deg,#059669,#34d399)
}

.fc-d::before {
    background: linear-gradient(90deg,#7c3aed,#c4b5fd)
}

.feat-card:hover {
    border-color: rgba(82,52,147,.22);
    box-shadow: 0 12px 40px rgba(82,52,147,.1);
    transform: translateY(-4px);
    background: var(--white)
}

.feat-card:hover::before {
    opacity: 1
}

.fc-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    transition: all .28s
}

.fc-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all .25s
}

.fci-a {
    background: #fef3c7
}

.fci-a svg {
    stroke: #d97706
}

.fci-b {
    background: var(--p-xs)
}

.fci-b svg {
    stroke: var(--p)
}

.fci-c {
    background: #d1fae5
}

.fci-c svg {
    stroke: #059669
}

.fci-d {
    background: #ede9fe
}

.fci-d svg {
    stroke: #7c3aed
}

.feat-card:hover .fc-icon {
    transform: scale(1.08)
}

.fc-title {
    line-height: 2rem;
    font-family: 'Space Grotesk',sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -.3px
}

.fc-desc {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.7
}

/* ══ TRUST SECTION ══ */
.trust-sec {
    background: var(--white);
    padding: 0 60px 88px
}

.trust-inner {
    max-width: 80vw;
    margin: 0 auto
}

/* section header */
.trust-header {
    text-align: center;
    padding-bottom: 52px;
    border-bottom: 1.5px solid var(--border);
    margin-bottom: 52px
}

.trust-ey {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 10px
}

.trust-title {
    font-family: 'Space Grotesk',sans-serif;
    font-size: clamp(26px,3vw,38px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -1.2px;
    line-height: 1.1;
    margin-bottom: 10px
}

.trust-sub {
    font-size: 15px;
    color: var(--slate);
    line-height: 1.75;
    max-width: 480px;
    margin: 0 auto
}

/* ── stat counter strip ── */
.stat-strip {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    background: var(--color-grad);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 44px;
    position: relative
}

.stat-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 22px);
    pointer-events: none
}

.stat-item {
    padding: 32px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    border-right: 1px solid rgba(255,255,255,.12)
}

.stat-item:last-child {
    border-right: none
}

.stat-n {
    font-family: 'Space Grotesk',sans-serif;
    font-size: clamp(30px,3.5vw,44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px
}

.stat-n em {
    font-style: normal;
    color: #c4b5fd
}

.stat-l {
    font-size: 15px;
    color: rgba(255,255,255,.55);
    font-weight: 500;
    letter-spacing: .3px
}

/* ── testimonial + logos layout ── */
.trust-body {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 24px;
    align-items: stretch
}

/* testimonial */
.tq-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.tq-card {
    background: var(--color-bg);
    border: 1.5px solid var(--color-bg-border);
    border-radius: 22px;
    padding: 36px 34px;
    position: relative;
    overflow: hidden;
    flex: 1;
    transition: all .3s
}

.tq-card:hover {
    border-color: rgba(82,52,147,.2);
    box-shadow: 0 16px 48px rgba(82,52,147,.08)
}

.tq-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--p-dk),var(--p),var(--p-lt));
    border-radius: 3px 3px 0 0
}

.tq-quote-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--p-xs);
    display: grid;
    place-items: center;
    margin-bottom: 20px
}

.tq-quote-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--p);
    stroke: none
}

.tq-body {
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 26px;
    position: relative
}

.tq-body::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--p-sm);
    border-radius: 2px;
    margin-bottom: 18px
}

.tq-footer {
    display: flex;
    align-items: center;
    gap: 14px
}

.tq-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--p),var(--p-lt));
    display: grid;
    place-items: center;
    font-family: 'Space Grotesk',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(82,52,147,.3)
}

.tq-meta {
    flex: 1
}

.tq-name {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.2px;
    margin-bottom: 0;
}

.tq-role {
    font-size: 15px;
    color: var(--ink);
    margin-top: 2px
}

.tq-stars {
    display: flex;
    gap: 3px
}

.tq-stars svg {
    width: 15px;
    height: 15px;
    fill: #f59e0b;
    stroke: none
}

/* second mini-testimonial */
.tq-mini {
    background: var(--color-grad);
    border-radius: 18px;
    padding: 24px 26px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    overflow: hidden
}

.tq-mini::before {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
    pointer-events: none
}

.tq-mini-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px
}

.tq-mini-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #c4b5fd;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.tq-mini-text p {
    font-size: 15px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    font-style: italic
}

.tq-mini-author {
    font-size: 11.5px;
    color: rgba(255,255,255,.45);
    margin-top: 8px;
    font-weight: 600
}

/* logos panel */
.logos-panel {
    background: var(--color-bg);
    border: 1.5px solid var(--color-bg-border);
    border-radius: 22px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column
}

.logos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px
}

.logos-ey {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--p);
    margin-bottom: 0;
}

.logos-count {
    background: var(--color-bg-border);
    border: 1px solid #e0f1ff;
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--p)
}

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

.logo-tile {
    aspect-ratio: 3/2;
    border: 1.5px solid var(--color-bg-border);
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .22s;
    overflow: hidden;
    padding: 10px 12px;
    cursor: default
}

.logo-tile:hover {
    border-color: rgba(82,52,147,.3);
    box-shadow: 0 6px 20px rgba(82,52,147,.09);
    transform: translateY(-2px)
}

.logo-tile img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .55;
    transition: all .22s
}

.logo-tile:hover img {
    filter: grayscale(0);
    opacity: 1
}

.logo-fb {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted)
}

.logos-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px
}

.logos-footer svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--p);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

.logos-footer p {
    font-size: 14px;
    color: #2d245b;
    line-height: 1.5
}
@media(max-width: 992px){
  .why-inner{
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .trust-body{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feat-grid,.stat-strip{
    grid-template-columns: repeat(2,1fr);
  }
}
@media(max-width: 576px){
  .section{
    padding: 0;
    max-width: 90vw;
  }
  .why-inner,.feat-inner,.trust-inner{
    max-width: 90vw;
  }
  .feat-grid,.stat-strip{
    grid-template-columns: 1fr;
  }
  .trust-sec{
    padding: 0 0 70px 0;
  }
  .tq-card,.logos-panel{
    padding: 20px;
  }
  .logos-count{
        line-height: 1.6rem;
  }
  .tq-footer {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
}
}