/* ═══════════════════════════════════════════════════════════
   GlobalTrust Bank — Premium Landing Page Styles
   ═══════════════════════════════════════════════════════════ */

/* Scroll reveal base */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
[data-reveal="fade-up"]    { transform: translateY(60px); }
[data-reveal="fade-down"]  { transform: translateY(-40px); }
[data-reveal="fade-left"]  { transform: translateX(-60px); }
[data-reveal="fade-right"] { transform: translateX(60px); }
[data-reveal="scale"]      { transform: scale(0.85); }
[data-reveal="rotate"]     { transform: perspective(800px) rotateY(-12deg) translateX(40px); }
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(3) { transition-delay: 0.19s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(4) { transition-delay: 0.26s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(5) { transition-delay: 0.33s; opacity: 1; transform: none; }
[data-stagger].revealed > *:nth-child(6) { transition-delay: 0.40s; opacity: 1; transform: none; }

/* ── Hero Image Background ── */
.hero-premium {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}
.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ken-burns 20s ease-in-out infinite alternate;
}
@keyframes ken-burns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.92) 0%,
        rgba(15, 34, 64, 0.78) 45%,
        rgba(26, 54, 93, 0.65) 100%
    );
    z-index: 1;
}
.hero-video-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 60%);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 8s infinite ease-in-out;
}
@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.2; }
    50% { transform: translateY(-80px) scale(1.5); opacity: 0.6; }
}

.hero-premium .hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0 100px;
}

.hero-premium h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-premium h1 .gradient-text {
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500), var(--gold-300));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-premium .hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-avatars {
    display: flex;
}
.hero-avatars img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid var(--navy-800);
    margin-left: -12px;
    object-fit: cover;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-trust-text { font-size: 14px; color: rgba(255,255,255,0.65); }
.hero-trust-text strong { color: var(--gold-400); display: block; font-size: 16px; }

/* 3D Card Stack */
.card-stack {
    position: relative;
    height: 420px;
    perspective: 1200px;
}
.bank-card-3d {
    position: absolute;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1.586;
    border-radius: 20px;
    padding: 28px;
    color: var(--white);
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    overflow: hidden;
}
.bank-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.bank-card-3d.primary {
    background: linear-gradient(135deg, #1a365d 0%, #0a1628 50%, #234876 100%);
    top: 0; right: 0;
    z-index: 3;
    animation: card-float 6s ease-in-out infinite;
}
.bank-card-3d.secondary {
    background: linear-gradient(135deg, #c9a227 0%, #8b6914 50%, #dbb84d 100%);
    top: 30px; right: 40px;
    z-index: 2;
    opacity: 0.7;
    transform: rotate(-8deg) scale(0.95);
}
.bank-card-3d.tertiary {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    top: 60px; right: 20px;
    z-index: 1;
    opacity: 0.4;
    transform: rotate(-15deg) scale(0.9);
}
@keyframes card-float {
    0%, 100% { transform: translateY(0) rotateY(-5deg); }
    50% { transform: translateY(-12px) rotateY(5deg); }
}
.card-chip {
    width: 50px; height: 38px;
    background: linear-gradient(135deg, #ffd700, #c9a227);
    border-radius: 8px;
    margin-bottom: 32px;
    position: relative;
}
.card-chip::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 4px;
}
.card-number {
    font-size: 22px;
    letter-spacing: 4px;
    font-weight: 300;
    margin-bottom: 24px;
    font-family: 'Courier New', monospace;
}
.card-footer { display: flex; justify-content: space-between; }
.card-footer span { font-size: 10px; text-transform: uppercase; opacity: 0.6; display: block; }
.card-footer strong { font-size: 14px; letter-spacing: 1px; }

.floating-badge {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: badge-bounce 4s ease-in-out infinite;
}
.floating-badge i {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 16px;
}
.floating-badge.transfer { bottom: 40px; left: -20px; animation-delay: 0.5s; }
.floating-badge.secure { top: 20px; left: -30px; animation-delay: 1s; }
.floating-badge strong { display: block; font-size: 15px; color: var(--navy-900); }
.floating-badge span { font-size: 12px; color: var(--gray-500); }
@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ── Marquee ── */
.marquee-section {
    background: var(--navy-900);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(201,162,39,0.15);
    border-bottom: 1px solid rgba(201,162,39,0.15);
}
.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.marquee-item i { color: var(--gold-500); font-size: 18px; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Premium Feature Cards with Images ── */
.features-premium {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}
.features-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.feature-card-premium {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(10, 22, 40, 0.12);
    border-color: transparent;
}
.feature-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card-premium:hover .feature-card-img img {
    transform: scale(1.1);
}
.feature-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.6), transparent);
}
.feature-card-body {
    padding: 28px;
    position: relative;
}
.feature-card-icon-float {
    position: absolute;
    top: -28px;
    right: 24px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    color: var(--navy-900);
    box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.feature-card-body h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card-body p { color: var(--gray-500); font-size: 14px; line-height: 1.7; }
.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--gold-500);
    font-weight: 600;
    font-size: 14px;
}
.feature-card-link i { transition: transform 0.3s; }
.feature-card-premium:hover .feature-card-link i { transform: translateX(6px); }

.features-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ── About Split with Image ── */
.about-premium {
    padding: 120px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}
.about-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-stack {
    position: relative;
    height: 560px;
}
.about-img-main {
    position: absolute;
    top: 0; left: 0;
    width: 75%;
    height: 85%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10,22,40,0.15);
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-img-secondary {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%;
    height: 50%;
    border-radius: 20px;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: 0 20px 40px rgba(10,22,40,0.12);
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    top: 50%; right: 10%;
    transform: translateY(-50%);
    width: 140px; height: 140px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    box-shadow: 0 16px 40px rgba(201,162,39,0.4);
    animation: pulse-ring 3s ease-in-out infinite;
}
.about-experience-badge strong { font-size: 36px; font-weight: 800; line-height: 1; }
.about-experience-badge span { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
@keyframes pulse-ring {
    0%, 100% { box-shadow: 0 16px 40px rgba(201,162,39,0.4); }
    50% { box-shadow: 0 16px 60px rgba(201,162,39,0.6), 0 0 0 12px rgba(201,162,39,0.1); }
}

.about-mission-cards { display: grid; gap: 16px; margin-top: 32px; }
.mission-card {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}
.mission-card:hover {
    border-color: var(--gold-400);
    box-shadow: 0 8px 30px rgba(10,22,40,0.06);
    transform: translateX(8px);
}
.mission-card-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-400); font-size: 20px;
}
.mission-card h4 { font-size: 16px; margin-bottom: 4px; }
.mission-card p { font-size: 14px; color: var(--gray-500); margin: 0; }

/* ── Experience Showcase (Image) ── */
.experience-showcase {
    padding: 120px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}
.experience-showcase::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,162,39,0.08), transparent 70%);
    top: -100px; right: -100px;
}
.experience-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.experience-showcase-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}
.experience-showcase-text p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}
.experience-checklist { list-style: none; margin-bottom: 36px; }
.experience-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255,255,255,0.8);
    font-size: 15px;
}
.experience-checklist li i {
    width: 28px; height: 28px;
    background: rgba(201,162,39,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-400);
    font-size: 12px;
}
.experience-image-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
    aspect-ratio: 16/10;
}
.experience-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.experience-image-wrap:hover img {
    transform: scale(1.05);
}
.experience-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.experience-image-badge i {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-900);
    font-size: 20px;
}
.experience-image-badge strong {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
}
.experience-image-badge span {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Gallery Bento Grid ── */
.gallery-section {
    padding: 120px 0;
    background: var(--white);
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 20px;
}
.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-item:hover img { transform: scale(1.08); }
.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 60%);
    transition: opacity 0.4s;
}
.bento-item:hover::after { opacity: 0.9; }
.bento-caption {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    z-index: 2;
    color: var(--white);
    transform: translateY(10px);
    opacity: 0.9;
    transition: transform 0.4s;
}
.bento-item:hover .bento-caption { transform: translateY(0); }
.bento-caption h4 { font-size: 18px; color: var(--white); margin-bottom: 4px; }
.bento-caption p { font-size: 13px; opacity: 0.75; }
.bento-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.bento-item:nth-child(2) { grid-column: span 4; }
.bento-item:nth-child(3) { grid-column: span 3; }
.bento-item:nth-child(4) { grid-column: span 4; }
.bento-item:nth-child(5) { grid-column: span 3; }

/* ── Services Bento ── */
.services-bento {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.service-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-bento-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    color: var(--white);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-bento-card:hover { transform: translateY(-8px); }
.service-bento-card .bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.service-bento-card .bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.service-bento-card:hover .bg-img img { transform: scale(1.08); }
.service-bento-card .bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.3) 100%);
}
.service-bento-content { position: relative; z-index: 1; }
.service-bento-content i {
    font-size: 32px;
    color: var(--gold-400);
    margin-bottom: 16px;
    display: block;
}
.service-bento-content h3 { font-size: 24px; color: var(--white); margin-bottom: 10px; }
.service-bento-content p { font-size: 14px; opacity: 0.8; line-height: 1.7; margin-bottom: 16px; }
.service-bento-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-400);
    font-weight: 600;
    font-size: 14px;
}

/* ── Why Choose Parallax ── */
.why-parallax {
    padding: 120px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.why-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.93), rgba(26,54,93,0.88));
}
.why-parallax .container { position: relative; z-index: 1; }
.why-parallax .section-header h2 { color: var(--white); }
.why-parallax .section-header p { color: rgba(255,255,255,0.6); }
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.why-glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.5s ease;
}
.why-glass-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-8px);
}
.why-glass-card .icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--navy-900);
    margin-bottom: 24px;
}
.why-glass-card h3 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.why-glass-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }

/* ── Steps Timeline ── */
.steps-timeline {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}
.steps-timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.steps-timeline-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-500), var(--navy-700), var(--gold-500));
    opacity: 0.3;
}
.step-timeline-item { text-align: center; position: relative; }
.step-timeline-num {
    width: 80px; height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-400);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    box-shadow: 0 8px 24px rgba(10,22,40,0.12);
    transition: all 0.4s ease;
}
.step-timeline-item:hover .step-timeline-num {
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--navy-900);
    transform: scale(1.1);
}
.step-timeline-item h3 { font-size: 18px; margin-bottom: 8px; }
.step-timeline-item p { color: var(--gray-500); font-size: 14px; }

/* ── Stats Parallax Banner ── */
.stats-parallax {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}
.stats-parallax::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(26,54,93,0.85));
}
.stats-parallax .container { position: relative; z-index: 1; }
.stats-parallax-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.stat-box {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    transition: all 0.4s ease;
}
.stat-box:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(201,162,39,0.3);
    transform: translateY(-6px);
}
.stat-box strong {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-box span {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ── Testimonials Premium ── */
.testimonials-premium {
    padding: 120px 0;
    background: var(--gray-50);
}
.testimonial-premium-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.testimonial-premium-card::before {
    content: '\201C';
    position: absolute;
    top: 16px; right: 24px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--gold-500);
    opacity: 0.15;
    line-height: 1;
}
.testimonial-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10,22,40,0.08);
    border-color: var(--gold-400);
}
.testimonial-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.testimonial-header img {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-400);
}
.testimonial-header strong { display: block; font-size: 16px; }
.testimonial-header span { font-size: 13px; color: var(--gray-400); }
.testimonial-stars-gold { color: var(--gold-500); margin-bottom: 16px; font-size: 14px; }
.testimonial-premium-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
}

/* ── FAQ Premium ── */
.faq-premium {
    padding: 120px 0;
    background: var(--white);
}
.faq-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}
.faq-side-image {
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    position: sticky;
    top: 100px;
    box-shadow: 0 24px 48px rgba(10,22,40,0.1);
}
.faq-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-item-premium {
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item-premium.active {
    border-color: var(--gold-400);
    box-shadow: 0 8px 24px rgba(201,162,39,0.1);
}
.faq-q-premium {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-900);
    text-align: left;
    gap: 16px;
}
.faq-q-premium .faq-num {
    width: 36px; height: 36px; min-width: 36px;
    background: rgba(201,162,39,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold-500);
    font-size: 14px;
    font-weight: 700;
}
.faq-q-premium i { color: var(--gold-500); transition: transform 0.3s; }
.faq-item-premium.active .faq-q-premium i { transform: rotate(180deg); }
.faq-a-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-item-premium.active .faq-a-premium { max-height: 300px; }
.faq-a-premium p {
    padding: 0 28px 22px 80px;
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.7;
}

/* ── Partners Logo Strip ── */
.partners-premium {
    padding: 80px 0;
    background: var(--navy-900);
}
.partners-logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.partner-logo-item {
    padding: 16px 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
.partner-logo-item:hover {
    background: rgba(201,162,39,0.1);
    border-color: rgba(201,162,39,0.3);
    color: var(--gold-400);
    transform: translateY(-4px);
}

/* ── CTA Section ── */
.cta-premium {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92), rgba(26,54,93,0.85));
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 36px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section Header Premium ── */
.section-header-premium {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}
.section-header-premium .section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,162,39,0.1);
    color: var(--gold-500);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.section-header-premium .section-label::before,
.section-header-premium .section-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.5;
}
.section-header-premium h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}
.section-header-premium p {
    color: var(--gray-500);
    font-size: 17px;
    line-height: 1.7;
}

/* ── Scroll Progress Bar ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy-900);
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 999;
    border: none;
    box-shadow: 0 8px 24px rgba(201,162,39,0.4);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-4px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-premium .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-premium .hero-desc { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-trust-row { justify-content: center; }
    .card-stack { height: 360px; max-width: 400px; margin: 0 auto; }
    .features-grid-premium { grid-template-columns: repeat(2, 1fr); }
    .about-premium-grid { grid-template-columns: 1fr; }
    .about-image-stack { height: 400px; max-width: 500px; margin: 0 auto; }
    .experience-showcase-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .bento-item:nth-child(1) { grid-column: span 2; grid-row: span 1; height: 300px; }
    .bento-item:nth-child(n) { grid-column: span 1; height: 220px; }
    .service-bento-grid { grid-template-columns: 1fr; }
    .why-cards-grid { grid-template-columns: 1fr; }
    .steps-timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-timeline-grid::before { display: none; }
    .stats-parallax-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-premium-grid { grid-template-columns: 1fr; }
    .faq-premium-grid { grid-template-columns: 1fr; }
    .faq-side-image { position: static; height: 300px; }
}

/* ── Auth Split Layout ── */
.auth-split {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.auth-split-visual {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}
.auth-split-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.auth-split-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, rgba(10,22,40,0.4) 60%, rgba(10,22,40,0.2) 100%);
}
.auth-split-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}
.auth-split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 12px;
}
.auth-split-content p {
    font-size: 16px;
    opacity: 0.75;
    max-width: 400px;
    line-height: 1.7;
}
.auth-split-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: var(--white);
}
.auth-split-form .auth-card {
    box-shadow: none;
    padding: 0;
    width: 100%;
    max-width: 420px;
}
@media (max-width: 768px) {
    .auth-split { grid-template-columns: 1fr; }
    .auth-split-visual { min-height: 240px; padding: 32px; }
    .auth-split-content h2 { font-size: 24px; }
    .features-grid-premium { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-item:nth-child(n) { grid-column: span 1; }
    .steps-timeline-grid { grid-template-columns: 1fr; }
    .stats-parallax-grid { grid-template-columns: 1fr 1fr; }
    .floating-badge { display: none; }
    .hero-premium h1 { font-size: 2.2rem; }
    .hero-premium .hero-content { padding: 40px 0; }
    .card-stack { height: 300px; }
    .footer-premium-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-premium-bottom { flex-direction: column; text-align: center; gap: 12px; }
}

@media (max-width: 480px) {
    .hero-premium h1 { font-size: 1.75rem; line-height: 1.2; }
    .hero-premium .hero-desc { font-size: 15px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .hero-trust-row { flex-direction: column; gap: 12px; }
    .stats-parallax-grid { grid-template-columns: 1fr; }
    .card-stack { height: 260px; max-width: 100%; }
    .about-image-stack { height: 280px; }
    .auth-split-form { padding: 24px 16px; }
    .auth-split-visual { min-height: 200px; padding: 24px; }
    .section-header-premium h2 { font-size: 1.75rem; }
    .back-to-top { right: 16px; bottom: 16px; }
}
