/* ==================== VARIABLES ==================== */
:root {
    --pu: #6B35E8;
    --pu2: #5B2FD4;
    --pu3: #3B1FA8;
    --pul: #9B7BFF;
    --pup: #EDE8FF;
    --bg: #F4F1FF;
    --dk: #1A0A3B;
    --tm: #5A4A7A;
    --tl: #9A8AB8;
    --r: 16px;
    --rl: 24px;
}

/* ==================== RESET & BASE ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dk);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==================== BACKGROUNDS ==================== */
.xbg {
    background-color: var(--pu);
    background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(59,31,168,.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.nlogo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    flex-shrink: 0;
}

.nlogo img {
    height: 34px;
    width: 34px;
    border-radius: 8px;
    object-fit: contain;
    background: white;
    padding: 2px;
}

.nlogo span {
    font-size: .95rem;
    font-weight: 800;
    color: white;
}

.nlogo span em {
    color: #C4B5FD;
    font-style: normal;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 0;
    align-items: center;
}

@media(min-width:900px) {
    .nav-links {
        display: flex;
    }
    
    .nav-links a {
        color: rgba(255,255,255,.78);
        font-size: .78rem;
        font-weight: 500;
        text-decoration: none;
        padding: 7px 11px;
        border-radius: 8px;
        transition: all .2s;
        white-space: nowrap;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        color: white;
        background: rgba(255,255,255,.12);
    }
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-nav {
    background: white;
    color: var(--pu2);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .78rem;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

.btn-nav:hover {
    background: var(--pup);
}

.ham {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.ham span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: .3s;
}

.ham.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ham.open span:nth-child(2) {
    opacity: 0;
}

.ham.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media(min-width:900px) {
    .ham {
        display: none;
    }
}

/* Mobile Menu */
.mob-menu {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 299;
    background: rgba(44,20,130,.98);
    backdrop-filter: blur(20px);
    padding: 12px 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    flex-direction: column;
    gap: 4px;
}

.mob-menu.open {
    display: flex;
}

.mob-menu a {
    color: rgba(255,255,255,.82);
    font-size: .9rem;
    font-weight: 500;
    text-decoration: none;
    padding: 11px 14px;
    border-radius: 10px;
    transition: background .2s;
}

.mob-menu a:hover {
    background: rgba(255,255,255,.1);
    color: white;
}

.mob-menu .mob-cta {
    margin-top: 8px;
    background: white;
    color: var(--pu2);
    text-align: center;
    font-weight: 700;
    border-radius: 50px;
}

/* ==================== BUTTONS ==================== */
.btn-w {
    background: white;
    color: var(--pu2);
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(0,0,0,.14);
}

.btn-w:hover {
    background: var(--pup);
    transform: translateY(-2px);
}

.btn-o {
    border: 2px solid rgba(255,255,255,.35);
    color: white;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .3s;
}

.btn-o:hover {
    border-color: white;
    background: rgba(255,255,255,.1);
}

.btn-pu {
    background: var(--pu);
    color: white;
    padding: 13px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(107,63,212,.3);
}

.btn-pu:hover {
    background: var(--pu3);
    transform: translateY(-2px);
}

/* ==================== SECTION UTILS ==================== */
section {
    padding: 60px 20px;
}

.wrap {
    max-width: 440px;
    margin: 0 auto;
}

@media(min-width:860px) {
    .wrap {
        max-width: 900px;
    }
}

.pill {
    display: inline-block;
    background: var(--pup);
    color: var(--pu2);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-title {
    font-size: clamp(1.5rem,4.5vw,2.3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.4px;
    color: var(--dk);
    margin-bottom: 9px;
}

.sec-title em {
    font-style: normal;
    color: var(--pu);
}

.sec-sub {
    font-size: .86rem;
    color: var(--tm);
    line-height: 1.68;
    margin-bottom: 20px;
}

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

/* ==================== PHONE FRAME ==================== */
.phone {
    background: #120730;
    border-radius: 32px;
    padding: 7px;
    box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.1);
}

.phone-notch {
    width: 56px;
    height: 13px;
    background: #120730;
    border-radius: 0 0 10px 10px;
    margin: 0 auto 4px;
}

.phone-screen {
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.phone-bar {
    width: 50px;
    height: 3px;
    background: rgba(255,255,255,.18);
    border-radius: 2px;
    margin: 5px auto 0;
}

/* ==================== HERO ==================== */
.hero {
    min-height: 100svh;
    padding: 74px 20px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .28;
    pointer-events: none;
}

.glow1 {
    width: 320px;
    height: 320px;
    background: #9B7BFF;
    top: -100px;
    right: -80px;
}

.glow2 {
    width: 200px;
    height: 200px;
    background: #C084FC;
    bottom: 80px;
    left: -60px;
}

.hero-logo {
    width: min(130px,36vw);
    border-radius: 12px;
    margin-bottom: 12px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 18px;
    color: white;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #A8F5C0;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%,100%{opacity:1;transform:scale(1)}
    50%{opacity:.4;transform:scale(1.5)}
}

.hero h1 {
    font-size: clamp(1.9rem,6.5vw,3.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: white;
    letter-spacing: -1px;
    margin-bottom: 5px;
}

.hero h1 em {
    font-style: italic;
    color: #C4B5FD;
}

.hero-tag {
    font-size: .88rem;
    color: rgba(255,255,255,.65);
    font-style: italic;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: .87rem;
    line-height: 1.65;
    color: rgba(255,255,255,.72);
    max-width: 420px;
    margin: 0 auto 24px;
}

.phones-trio {
    display: flex;
    gap: 14px;
    align-items: flex-end;
    justify-content: center;
    margin: 24px 0;
    position: relative;
    z-index: 2;
}

.phone-main {
    width: min(170px,44vw);
    position: relative;
}

.phone-side {
    width: min(120px,32vw);
    opacity: .5;
    transform: scale(.9);
    display: none;
}

@media(min-width:460px) {
    .phone-side {
        display: block;
    }
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 8px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    z-index: 5;
    animation: floatY 4s ease-in-out infinite;
}

.float-badge.top {
    right: -14px;
    top: 20px;
    animation-delay: 0s;
}

.float-badge.bot {
    left: -14px;
    bottom: 44px;
    animation-delay: .8s;
}

@keyframes floatY {
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-7px)}
}

.fb-label {
    font-size: .56rem;
    color: var(--tl);
    margin-bottom: 1px;
}

.fb-val {
    font-size: .8rem;
    font-weight: 800;
    color: var(--dk);
}

.fb-sub {
    font-size: .56rem;
    color: var(--pu);
    margin-top: 1px;
    font-weight: 600;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

@media(min-width:420px) {
    .hero-btns {
        flex-direction: row;
        justify-content: center;
    }
}

/* ==================== STATS ==================== */
.stats-bar {
    background: white;
    padding: 22px 16px;
    border-bottom: 1px solid rgba(107,63,212,.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 560px;
    margin: 0 auto;
    gap: 1px;
    background: rgba(107,63,212,.09);
    border: 1px solid rgba(107,63,212,.09);
    border-radius: 14px;
    overflow: hidden;
}

@media(min-width:540px) {
    .stats-grid {
        grid-template-columns: repeat(4,1fr);
    }
}

.stat {
    background: white;
    padding: 16px 10px;
    text-align: center;
}

.stat-n {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--pu);
    line-height: 1;
    margin-bottom: 3px;
}

.stat-l {
    font-size: .65rem;
    color: var(--tl);
    line-height: 1.3;
}

/* ==================== FEAT CARDS ==================== */
.feat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
}

@media(min-width:560px) {
    .feat-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.feat {
    background: white;
    border-radius: var(--r);
    padding: 17px;
    border: 1.5px solid rgba(107,63,212,.1);
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: box-shadow .2s, border-color .2s;
}

.feat:hover {
    box-shadow: 0 5px 18px rgba(107,63,212,.11);
    border-color: rgba(107,63,212,.22);
}

.feat.new {
    border-color: rgba(107,63,212,.28);
    background: var(--pup);
}

.feat-ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    background: var(--pu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.feat-ic.gold {
    background: linear-gradient(135deg,#D4AF37,#F0D060);
}

.feat-t h4 {
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.feat-t p {
    font-size: .75rem;
    color: var(--tm);
    line-height: 1.55;
}

.new-tag {
    display: inline-block;
    background: var(--pu);
    color: white;
    font-size: .52rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

/* ==================== DASHBOARD SHOWCASE ==================== */
.db-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center;
}

@media(min-width:860px) {
    .db-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.db-phone-wrap {
    display: flex;
    justify-content: center;
    position: relative;
}

.db-phone {
    width: min(220px,58vw);
    position: relative;
}

.db-float {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 10px 36px rgba(0,0,0,.2);
    z-index: 5;
    animation: floatY 4s ease-in-out infinite;
}

.db-float.f1 {
    right: -10px;
    top: 50px;
    animation-delay: 0s;
}

.db-float.f2 {
    left: -10px;
    bottom: 80px;
    animation-delay: 1s;
}

.db-feats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.db-feat {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px;
    background: var(--pup);
    border-radius: 14px;
    border: 1px solid rgba(107,63,212,.1);
}

.db-feat-ic {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
    background: var(--pu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.db-feat-ic.gold {
    background: linear-gradient(135deg,#D4AF37,#F0D060);
}

.db-feat h4 {
    font-size: .84rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.db-feat p {
    font-size: .75rem;
    color: var(--tm);
    line-height: 1.5;
}

/* ==================== CAROUSEL ==================== */
.carousel-section {
    background: white;
    padding: 56px 0 60px;
    overflow: hidden;
}

.carousel-section .wrap {
    padding: 0 20px;
}

.carousel-outer {
    position: relative;
    overflow: hidden;
    margin-top: 24px;
    cursor: grab;
}

.carousel-outer:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.cslide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 0 20px;
    user-select: none;
    -webkit-user-drag: none;
}

.cslide-phone {
    width: min(200px,54vw);
}

.cslide-info {
    text-align: center;
}

.cslide-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dk);
    margin-bottom: 4px;
}

.cslide-sub {
    font-size: .78rem;
    color: var(--tl);
    line-height: 1.4;
}

.carr {
    position: absolute;
    top: 36%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1.5px solid rgba(107,63,212,.18);
    color: var(--pu);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,.1);
    transition: all .2s;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.carr:hover {
    background: var(--pu);
    color: white;
    border-color: var(--pu);
    transform: translateY(-50%) scale(1.08);
}

.carr-l {
    left: 8px;
}

.carr-r {
    right: 8px;
}

.cdots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin: 16px 0 4px;
}

.cdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(107,63,212,.2);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

.cdot.on {
    background: var(--pu);
    width: 24px;
    border-radius: 4px;
}

.ccount {
    text-align: center;
    font-size: .68rem;
    color: var(--tl);
    font-weight: 500;
}

/* ==================== APPS ==================== */
.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media(min-width:860px) {
    .apps-grid {
        flex-direction: row;
    }
    .app-card {
        flex: 1;
    }
}

.app-card {
    border-radius: var(--rl);
    overflow: hidden;
}

.app-head {
    padding: 24px 20px 0;
    overflow: hidden;
}

.app-head.pu {
    background: var(--pu);
    background-image: linear-gradient(rgba(255,255,255,.06)1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06)1px,transparent 1px);
    background-size: 22px 22px;
}

.app-head.dk {
    background: #1A0A3B;
    background-image: linear-gradient(rgba(155,123,255,.07)1px,transparent 1px),linear-gradient(90deg,rgba(155,123,255,.07)1px,transparent 1px);
    background-size: 22px 22px;
}

.app-label {
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: rgba(255,255,255,.55);
}

.app-head.dk .app-label {
    color: var(--pul);
}

.app-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 7px;
    line-height: 1.2;
}

.app-desc {
    font-size: .79rem;
    color: rgba(255,255,255,.68);
    line-height: 1.58;
    margin-bottom: 14px;
}

.app-phones {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 0 12px;
}

.app-ph {
    flex: 1;
    max-width: 115px;
    background: #120730;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,.36),0 0 0 1px rgba(255,255,255,.1);
}

.app-ph .pn {
    width: 38px;
    height: 9px;
    background: #120730;
    border-radius: 0 0 7px 7px;
    margin: 0 auto 3px;
}

.app-ph .ps {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.app-ph .ps img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.app-ph .pb {
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,.14);
    border-radius: 2px;
    margin: 3px auto 0;
}

.app-body {
    background: white;
    padding: 18px 18px 20px;
}

.app-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.app-feat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--dk);
}

.ck {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .54rem;
    font-weight: 800;
}

.ck-pu {
    background: var(--pup);
    color: var(--pu2);
}

.ck-dk {
    background: #EDE8FF;
    color: var(--pu3);
}

.app-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    border-radius: 11px;
    font-weight: 700;
    font-size: .83rem;
    text-decoration: none;
    transition: all .3s;
}

.cta-pu {
    background: var(--pu);
    color: white;
}

.cta-pu:hover {
    background: var(--pu3);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(107,63,212,.3);
}

.cta-dk {
    background: var(--dk);
    color: white;
}

.cta-dk:hover {
    background: #2D1A5A;
    transform: translateY(-2px);
}

/* ==================== CARTE SHOWCASE ==================== */
.show-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

@media(min-width:860px) {
    .show-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.show-phones {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sh-ph {
    width: min(138px,37vw);
    background: #120730;
    border-radius: 26px;
    padding: 6px;
    box-shadow: 0 18px 50px rgba(0,0,0,.36),0 0 0 1px rgba(255,255,255,.1);
}

.sh-ph .pn {
    width: 46px;
    height: 11px;
    background: #120730;
    border-radius: 0 0 8px 8px;
    margin: 0 auto 3px;
}

.sh-ph .ps {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.sh-ph .ps img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.sh-ph .pb {
    width: 42px;
    height: 2px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
    margin: 4px auto 0;
}

/* ==================== STEPS ==================== */
.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    gap: 15px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(107,63,212,.07);
}

.step:last-child {
    border-bottom: none;
}

.step-n {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--pu);
    color: white;
    font-weight: 800;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(107,63,212,.28);
}

.step-c h4 {
    font-size: .86rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.step-c p {
    font-size: .77rem;
    color: var(--tm);
    line-height: 1.6;
}

/* ==================== TRUST ==================== */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

@media(min-width:540px) {
    .trust-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

.trust-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--r);
    padding: 20px;
    text-align: center;
    transition: background .3s;
}

.trust-card:hover {
    background: rgba(255,255,255,.18);
}

.trust-ic {
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.trust-t {
    font-size: .86rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.trust-d {
    font-size: .74rem;
    color: rgba(255,255,255,.6);
    line-height: 1.5;
}

/* ==================== POSTERS ==================== */
.post-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    max-width: 440px;
    margin: 0 auto;
}

.post-item {
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(107,63,212,.18);
    transition: transform .3s;
}

.post-item:hover {
    transform: translateY(-4px);
}

.post-item img {
    width: 100%;
    display: block;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: top;
}

.post-cap {
    background: var(--dk);
    color: white;
    padding: 9px 12px;
    font-size: .71rem;
    font-weight: 600;
    text-align: center;
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

@media(min-width:860px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.clinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.clink {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dk);
    padding: 12px;
    background: var(--pup);
    border-radius: var(--r);
    transition: all .2s;
    border: 1px solid transparent;
}

.clink:hover {
    border-color: var(--pul);
    background: #E4DCFF;
}

.clink-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--pu);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0;
    color: white;
}

.clink-info small {
    display: block;
    font-size: .61rem;
    color: var(--tl);
    margin-bottom: 1px;
}

.clink-info span {
    font-size: .77rem;
    font-weight: 600;
}

.cform {
    background: var(--pup);
    border-radius: var(--rl);
    padding: 22px;
    border: 1px solid rgba(107,63,212,.1);
}

.cform-title {
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.fg {
    margin-bottom: 12px;
}

.fg label {
    display: block;
    font-size: .66rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--tm);
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1.5px solid rgba(107,63,212,.13);
    background: white;
    font-family: 'Poppins',sans-serif;
    font-size: .8rem;
    color: var(--dk);
    outline: none;
    transition: border-color .2s;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--pu);
}

.fg textarea {
    height: 84px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: var(--pu);
    color: white;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-family: 'Poppins',sans-serif;
    font-size: .84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
}

.btn-submit:hover {
    background: var(--pu3);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--dk);
    color: rgba(255,255,255,.5);
    padding: 40px 20px 22px;
}

.footer-in {
    max-width: 900px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    margin-bottom: 16px;
}

@media(min-width:600px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.fbrand p {
    font-size: .75rem;
    line-height: 1.7;
    margin-top: 10px;
    max-width: 230px;
}

.fcol h5 {
    color: white;
    font-weight: 700;
    font-size: .8rem;
    margin-bottom: 11px;
}

.fcol ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fcol a {
    color: rgba(255,255,255,.44);
    text-decoration: none;
    font-size: .75rem;
    transition: color .2s;
}

.fcol a:hover {
    color: var(--pul);
}

.footer-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .7rem;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-bot a {
    color: rgba(255,255,255,.28);
    text-decoration: none;
}

.footer-bot a:hover {
    color: var(--pul);
}

/* ==================== FADE-IN ==================== */
.fu {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s, transform .5s;
}

.fu.in {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== SECTIONS ==================== */
.section-white {
    background: white;
}

.section-bg {
    background: var(--bg);
}

.cta-final {
    padding: 64px 20px;
    text-align: center;
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}