:root {
    --green: #00e6a0;
    --green-dark: #00c88c;
    --green-glow: rgba(0, 230, 160, 0.25);
    --gold: #dfb15b;
    --dark-base: #03060c;
    --dark-surface: #0a1120;
    --dark-surface-elevated: #111a2f;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text: #ffffff;
    --text2: #94a3b8;
    --text3: #64748b;
    --font: 'Sora', sans-serif;
    --font2: 'DM Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font2);
    color: var(--text);
    background: var(--dark-base);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* Background Effects */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 30%, rgba(0, 230, 160, 0.08), transparent 35%),
        radial-gradient(circle at 85% 70%, rgba(0, 200, 140, 0.05), transparent 35%);
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 6, 12, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    height: 72px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(3, 6, 12, 0.85);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text2);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--dark-base);
    box-shadow: 0 6px 20px var(--green-glow);
}

.btn-green:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 230, 160, 0.4);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1rem;
    border-radius: 14px;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 230, 160, 0.08);
    border: 1px solid rgba(0, 230, 160, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    box-shadow: 0 0 12px var(--green);
}

.hero h1 {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text);
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--green), #00a87e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(0, 230, 160, 0.3));
    display: inline-block;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text2);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.app-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.app-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.app-badge i {
    font-size: 1.6rem;
    color: white;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
}

.app-badge-text small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.app-badge-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.press-logos {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.press-logos span {
    font-size: 0.75rem;
    color: var(--text3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 8px;
}

.press-logo {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text3);
    letter-spacing: -0.01em;
    opacity: 0.6;
    transition: all 0.3s;
}

.press-logo:hover {
    opacity: 1;
    color: white;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
}

.hero-stat {
    flex: 1;
    position: relative;
}

.hero-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 32px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--glass-border);
}

.hero-stat:not(:last-child) {
    padding-right: 32px;
    margin-right: 32px;
}

.hero-stat h3 {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    text-shadow: 0 0 25px rgba(0, 230, 160, 0.2);
}

.hero-stat p {
    font-size: 0.85rem;
    color: var(--text3);
    font-weight: 500;
    margin-top: 4px;
}

/* PHONE MOCKUPS */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 660px;
    perspective: 1200px;
}

.phone-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.phone {
    position: absolute;
    border-radius: 40px;
    overflow: hidden;
    background: rgba(10, 17, 32, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 2px 20px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: 0 0 4px 4px;
}

.phone-main {
    width: 260px;
    height: 540px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: floatMain 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9), inset 0 2px 30px rgba(255, 255, 255, 0.1);
}

.phone-left {
    width: 220px;
    height: 460px;
    top: 50%;
    left: 5%;
    transform: translateY(-55%) rotate(-6deg);
    z-index: 2;
    opacity: 0.85;
    animation: floatLeft 7s ease-in-out 0.5s infinite;
    filter: brightness(0.7) blur(1px);
    transition: filter 0.5s, opacity 0.5s;
}

.phone-right {
    width: 220px;
    height: 460px;
    top: 50%;
    right: 5%;
    transform: translateY(-45%) rotate(6deg);
    z-index: 2;
    opacity: 0.85;
    animation: floatRight 8s ease-in-out 1s infinite;
    filter: brightness(0.7) blur(1px);
    transition: filter 0.5s, opacity 0.5s;
}

.phone-left:hover,
.phone-right:hover {
    filter: brightness(1) blur(0px);
    opacity: 1;
    z-index: 4;
}

@keyframes floatMain {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(-55%) rotate(-6deg) translateY(0px);
    }

    50% {
        transform: translateY(-55%) rotate(-6deg) translateY(-15px);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(-45%) rotate(6deg) translateY(0px);
    }

    50% {
        transform: translateY(-45%) rotate(6deg) translateY(-15px);
    }
}

/* Phone screen content */
.phone-screen {
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0 8px;
}

.phone-logo {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone-logo-dot {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--green-glow);
}

.phone-balance {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.phone-balance-label {
    font-size: 0.6rem;
    color: var(--text3);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.phone-balance-val {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 6px;
}

.phone-balance-change {
    font-size: 0.65rem;
    color: var(--green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 230, 160, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.phone-prop {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.phone-prop:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.1);
}

.phone-prop-img {
    height: 90px;
    position: relative;
    overflow: hidden;
}

.phone-prop-img-1 {
    background: url('images/properties/prop1.jpg') center/cover;
}

.phone-prop-img-2 {
    background: url('images/properties/prop2.jpg') center/cover;
}

.phone-prop-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 32, 1), transparent);
}

.phone-prop-body {
    padding: 12px 14px 16px;
    position: relative;
    z-index: 1;
    margin-top: -30px;
}

.phone-prop-name {
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    margin-bottom: 4px;
}

.phone-prop-loc {
    font-size: 0.65rem;
    color: var(--text2);
    margin-bottom: 12px;
}

.phone-prop-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.phone-prop-val {
    font-family: var(--font);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--green);
    text-shadow: 0 0 10px rgba(0, 230, 160, 0.2);
}

.phone-prop-lbl {
    font-size: 0.55rem;
    color: var(--text3);
    margin-bottom: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.phone-prog-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 10px;
    overflow: hidden;
}

.phone-prog {
    height: 100%;
    background: linear-gradient(90deg, var(--green-dark), var(--green));
    border-radius: 2px;
    box-shadow: 0 0 10px var(--green);
    position: relative;
}

.phone-prog::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.phone-nav {
    display: flex;
    justify-content: space-between;
    padding: 16px 16px 8px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.phone-nav-dot {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.phone-nav-dot.active {
    background: var(--green);
    box-shadow: 0 0 15px var(--green-glow);
}

.phone-nav-txt {
    font-size: 0.55rem;
    color: var(--text3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s;
}

.phone-nav-txt.active {
    color: white;
}

/* Floating metric cards */
.float-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    transition: transform 0.4s, border-color 0.4s;
}

.float-card:hover {
    transform: scale(1.05);
    border-color: rgba(0, 230, 160, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 230, 160, 0.1);
}

.float-card-1 {
    top: 15%;
    left: -5%;
    animation: floatC1 5s ease-in-out infinite;
}

.float-card-2 {
    bottom: 15%;
    right: -5%;
    animation: floatC2 5.5s ease-in-out 0.7s infinite;
}

@keyframes floatC1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatC2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

.fc-label {
    font-size: 0.7rem;
    color: var(--text3);
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fc-val {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 2px;
}

.fc-change {
    font-size: 0.75rem;
    color: var(--green);
    font-weight: 600;
}

.fc-change.red {
    color: #ef4444;
}

/* TRUSTED BY */
.trusted {
    background: rgba(5, 8, 16, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 32px 0;
    position: relative;
    z-index: 2;
}

.trusted-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.trusted-label {
    font-size: 0.85rem;
    color: var(--text3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    gap: 48px;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.t-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    opacity: 0.7;
    transition: all 0.4s ease;
    cursor: default;
}

.t-logo img {
    height: 100%;
    width: auto;
}

.mobile-only {
    display: none;
}

/* MARQUEE ANIMATION */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 24px));
        /* Adjust for half the list + half gap */
    }
}

@media (max-width: 768px) {
    .trusted-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trusted-logos {
        justify-content: flex-start;
        width: max-content;
        animation: marquee 30s linear infinite;
        gap: 48px;
    }

    .t-logo {
        flex-shrink: 0;
    }

    .mobile-only {
        display: flex;
    }

    .trusted::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(to left, var(--dark-base), transparent);
        pointer-events: none;
        z-index: 2;
    }

    .trusted::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100%;
        background: linear-gradient(to right, var(--dark-base), transparent);
        pointer-events: none;
        z-index: 2;
    }
}

.t-logo img {
    max-height: 100%;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.t-logo:hover {
    opacity: 0.9;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transform: scale(1.05);
}

/* SECTIONS */
.section {
    padding: 140px 0;
    position: relative;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 230, 160, 0.1);
    border-radius: 100px;
    border: 1px solid rgba(0, 230, 160, 0.2);
    box-shadow: 0 0 15px rgba(0, 230, 160, 0.1);
}

.section-title {
    font-family: var(--font);
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.section-sub {
    font-size: 1.15rem;
    color: var(--text2);
    max-width: 600px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin: 0 auto;
}

.bg-dark {
    background: var(--dark-base);
}

.bg-light {
    background: linear-gradient(180deg, var(--dark-surface) 0%, var(--dark-base) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(0, 230, 160, 0.03), transparent 70%);
    pointer-events: none;
}

/* HOW IT WORKS / STEPS */
.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.step {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 230, 160, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.step>* {
    position: relative;
    z-index: 1;
}

.step:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 230, 160, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(0, 230, 160, 0.05);
}

.step:hover::before {
    opacity: 1;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 230, 160, 0.1);
    color: var(--green);
    box-shadow: 0 0 20px rgba(0, 230, 160, 0.1);
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    border: 1px solid rgba(0, 230, 160, 0.2);
    transition: all 0.3s;
}

.step:hover .step-num {
    transform: scale(1.1) rotate(5deg);
    background: var(--green);
    color: var(--dark-base);
    box-shadow: 0 0 25px var(--green-glow);
}

.step h3 {
    font-family: var(--font);
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.step h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.5;
    color: var(--green-dark);
}

.step p {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.7;
}

/* FEATURE SPLIT */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-split.reverse {
    direction: rtl;
}

.feature-split.reverse>* {
    direction: ltr;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 230, 160, 0.3);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 230, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.4rem;
    flex-shrink: 0;
    border: 1px solid rgba(0, 230, 160, 0.2);
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0, 230, 160, 0.1);
}

.feature-item:hover .feature-item-icon {
    background: var(--green);
    color: var(--dark-base);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 20px var(--green-glow);
}

.feature-item-text h4 {
    font-family: var(--font);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: white;
}

.feature-item-text p {
    font-size: 0.95rem;
    color: var(--text2);
    line-height: 1.6;
}

/* REGIONS */
.regions-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    perspective: 2000px;
    padding: 20px;
}

.region-card {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    height: 480px;
    width: 100%;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    background: var(--dark-surface);
}

.region-card:hover {
    transform: rotateY(-10deg) rotateX(5deg) translateZ(50px) scale(1.02);
    box-shadow:
        20px 40px 80px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(0, 230, 160, 0.15);
    border-color: rgba(0, 230, 160, 0.4);
    z-index: 10;
}

.region-card:hover .region-overlay {
    background: linear-gradient(0deg, rgba(3, 6, 12, 0.95) 0%, rgba(3, 6, 12, 0.1) 80%);
}

.region-card:hover .region-bg-img {
    transform: scale(1.1);
}

.region-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.region-bg-dubai {
    background-image: url('images/markets/dubai.jpg');
}

.region-bg-ksa {
    background-image: url('images/markets/ksa.jpg');
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 6, 12, 0.7) 0%, rgba(3, 6, 12, 0.2) 70%);
    transition: background 0.5s;
}

.region-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px;
    color: white;
    transform: translateZ(60px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.region-card:hover .region-content {
    transform: translateZ(90px) translateY(-10px);
}

.region-flag {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
    display: inline-block;
    transition: transform 0.3s;
}

.region-card:hover .region-flag {
    transform: scale(1.1) translateY(-5px);
}

.region-content h3 {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.region-content p {
    font-size: 1rem;
    color: var(--text2);
    margin-bottom: 24px;
    line-height: 1.6;
}

.region-stats {
    display: flex;
    gap: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.region-stat strong {
    display: block;
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--green);
    text-shadow: 0 0 15px rgba(0, 230, 160, 0.2);
    margin-bottom: 4px;
}

.region-stat span {
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: block;
}

/* CARDS (Money, Rewards, Benefits, Testimonials) */
.money-grid,
.rewards-grid,
.benefits-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.money-card,
.reward-card,
.benefit,
.testimonial {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 48px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.money-card::before,
.reward-card::before,
.benefit::before,
.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 60%);
    pointer-events: none;
}

.money-card:hover,
.reward-card:hover,
.benefit:hover,
.testimonial:hover {
    border-color: rgba(0, 230, 160, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 230, 160, 0.06);
}

/* specific card styling */
.money-card-icon,
.reward-icon,
.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(0, 230, 160, 0.1);
    border: 1px solid rgba(0, 230, 160, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 1.6rem;
    margin-bottom: 32px;
    box-shadow: 0 10px 20px rgba(0, 230, 160, 0.1);
    transition: all 0.4s;
}

.money-card:hover .money-card-icon,
.reward-card:hover .reward-icon,
.benefit:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--green);
    color: var(--dark-base);
    box-shadow: 0 0 20px var(--green-glow);
}

.reward-icon {
    margin: 0 auto 32px;
}

.reward-card {
    text-align: center;
}

.money-card h3,
.reward-card h3,
.benefit h4 {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.4rem;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.money-card p,
.reward-card p,
.benefit p {
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 32px;
}

.benefit p {
    margin-bottom: 0;
}

.money-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.m-stat strong {
    display: block;
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(0, 230, 160, 0.2);
}

.m-stat span {
    font-size: 0.85rem;
    color: var(--text3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* TESTIMONIALS */
.testimonial {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 5px rgba(223, 177, 91, 0.4));
}

.testi-text {
    font-size: 1.05rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-weight: 800;
    color: var(--dark-base);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.testi-name {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 4px;
}

.testi-country {
    font-size: 0.8rem;
    color: var(--text3);
    font-weight: 500;
}

/* CTA DARK */
.cta-dark {
    background: radial-gradient(circle at center, rgba(0, 230, 160, 0.05) 0%, var(--dark-base) 70%), var(--dark-base);
    position: relative;
    border-top: 1px solid var(--glass-border);
    overflow: hidden;
}

.cta-dark::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 230, 160, 0.04);
    blur: 100px;
    filter: blur(100px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-dark-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 140px 32px;
    position: relative;
    z-index: 2;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-text {
    text-align: left;
}

.cta-dark h2 {
    font-family: var(--font);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: white;
    line-height: 1.05;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cta-dark p {
    font-size: 1.25rem;
    color: var(--text2);
    margin-bottom: 48px;
    line-height: 1.7;
    max-width: 600px;
}

.cta-dark p span {
    color: var(--green);
    font-weight: 700;
}

/* 3D Reward Card */
.cta-visual-wrap {
    perspective: 1500px;
    display: flex;
    justify-content: center;
}

.reward-card-3d {
    width: 400px;
    height: 240px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)), url('images/properties/prop1.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    animation: floatCard 6s ease-in-out infinite;
    overflow: hidden;
}

.reward-card-3d:hover {
    transform: rotateY(-20deg) rotateX(10deg) translateZ(50px);
    border-color: var(--green);
}

.reward-card-inner {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    /* Make it white to contrast with dark card */
}

.card-chip {
    width: 50px;
    height: 38px;
    background: linear-gradient(135deg, #dfb15b, #b38b3d);
    border-radius: 8px;
    margin-bottom: 20px;
}

.card-amount {
    font-family: var(--font);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--green);
    text-shadow: 0 0 20px var(--green-glow);
}

.card-holder {
    font-size: 0.9rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-download {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.cta-download:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    border-color: rgba(0, 230, 160, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-download i {
    font-size: 1.8rem;
    color: white;
}

.cta-download-text {
    text-align: left;
}

.cta-download-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.cta-download-text strong {
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font);
    letter-spacing: -0.01em;
}

/* FOOTER */
footer {
    background: #020408;
    color: white;
    padding: 100px 0 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    color: white;
    text-decoration: none;
    margin-bottom: 24px;
    display: inline-flex;
}

.footer-desc {
    font-size: 1rem;
    color: var(--text3);
    line-height: 1.7;
    max-width: 320px;
    margin-top: 16px;
}

.footer-col h4 {
    font-family: var(--font);
    font-weight: 800;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-col a {
    font-size: 0.95rem;
    color: var(--text3);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: var(--green);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text3);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom-flex p {
    margin-bottom: 0;
}

.credit {
    font-size: 0.75rem;
    color: var(--text3);
    opacity: 0.8;
}

.credit a {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.credit a:hover {
    opacity: 1;
    text-decoration: underline;
}

.regulatory {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
    max-width: 700px;
    line-height: 1.7 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .section {
        padding: 100px 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .app-badges {
        justify-content: center;
    }

    .press-logos {
        justify-content: center;
        margin-bottom: 64px;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .hero-stat:not(:last-child)::after {
        display: none;
    }

    .hero-stat:not(:last-child) {
        padding-right: 0;
        margin-right: 0;
    }

    .hero-stat {
        min-width: 200px;
    }

    .hero-visual {
        height: 500px;
    }

    .steps-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-split.reverse {
        direction: ltr;
    }

    .feature-item {
        text-align: left;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .regions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .steps-row,
    .money-grid,
    .rewards-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .hero-visual {
        height: 400px;
    }

    .phone-main {
        width: 220px;
        height: 460px;
    }

    .phone-left,
    .phone-right {
        display: none;
    }

    .float-card {
        transform: scale(0.8);
    }

    .float-card:hover {
        transform: scale(0.85);
    }

    .float-card-1 {
        left: 0;
        top: 0;
    }

    .float-card-2 {
        right: 0;
        bottom: 0;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}






/* ===== TESTIMONIALS 3D ===== */
.testimonials-grid-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    perspective: 2000px;
}

.testimonial-3d {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: cardEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.testimonial-3d.fade-in-up {
    opacity: 0; /* initial state for animation */
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testi-card-inner {
    padding: 40px;
    border-radius: 28px;
    background: transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-3d:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
    border-color: var(--green);
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--green-glow);
}

.testimonial-3d:hover .testi-card-inner {
    background: rgba(0, 230, 160, 0.02);
}

/* Avatar enhancements */
.testi-avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.testi-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-3d:hover .avatar-glow {
    opacity: 0.6;
}

.testimonial-3d:hover .testi-avatar-img {
    transform: scale(1.1);
}

/* Stars */
.testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 5px rgba(223, 177, 91, 0.4));
    transition: filter 0.3s;
}

.testimonial-3d:hover .testi-stars {
    filter: drop-shadow(0 0 10px var(--gold));
}

/* Text */
.testi-text {
    font-size: 1.05rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.testi-name {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 4px;
}

.testi-country {
    font-size: 0.8rem;
    color: var(--text3);
    font-weight: 500;
}

/* Staggered delays (already in HTML) */
.testimonial-3d:nth-child(2) {
    animation-delay: 0.1s;
}
.testimonial-3d:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid-3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid-3d {
        grid-template-columns: 1fr;
    }
}/* ===== TESTIMONIALS 3D ===== */
.testimonials-grid-3d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    perspective: 2000px;
}

.testimonial-3d {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: cardEntrance 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
}

.testimonial-3d.fade-in-up {
    opacity: 0; /* initial state for animation */
}

@keyframes cardEntrance {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.testi-card-inner {
    padding: 40px;
    border-radius: 28px;
    background: transparent;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-3d:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(20px);
    border-color: var(--green);
    box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px var(--green-glow);
}

.testimonial-3d:hover .testi-card-inner {
    background: rgba(0, 230, 160, 0.02);
}

/* Avatar enhancements */
.testi-avatar-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
}

.testi-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--green);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.testimonial-3d:hover .avatar-glow {
    opacity: 0.6;
}

.testimonial-3d:hover .testi-avatar-img {
    transform: scale(1.1);
}

/* Stars */
.testi-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 3px;
    filter: drop-shadow(0 0 5px rgba(223, 177, 91, 0.4));
    transition: filter 0.3s;
}

.testimonial-3d:hover .testi-stars {
    filter: drop-shadow(0 0 10px var(--gold));
}

/* Text */
.testi-text {
    font-size: 1.05rem;
    color: white;
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    font-weight: 300;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.testi-name {
    font-family: var(--font);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
    margin-bottom: 4px;
}

.testi-country {
    font-size: 0.8rem;
    color: var(--text3);
    font-weight: 500;
}

/* Staggered delays (already in HTML) */
.testimonial-3d:nth-child(2) {
    animation-delay: 0.1s;
}
.testimonial-3d:nth-child(3) {
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid-3d {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid-3d {
        grid-template-columns: 1fr;
    }
}