﻿/* =============================================
   UBB INCORP - NORTE MINAS
   Landing Page Design System
   ============================================= */

/* â€” Google Fonts â€” */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* â€” CSS Custom Properties â€” */
:root {
    --navy: #0A1628;
    --navy-deep: #060F1D;
    --navy-light: #132240;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --black: #111111;
    --gray-muted: #6B7A90;
    --gray-border: #D1D5DB;
    --gold-accent: #C9A84C;
    --gold-light: #E8D596;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-width: 1200px;
    --section-padding: 100px 0;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â€” Reset & Base â€” */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* â€” Buttons â€” */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-navy:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.3);
}

.btn-gold {
    background: var(--gold-accent);
    color: var(--navy);
    border-color: var(--gold-accent);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-navy-gold {
    background: var(--navy);
    color: var(--gold-accent);
    border-color: var(--navy);
}

.btn-navy-gold:hover {
    background: var(--navy-light);
    color: var(--gold-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.3);
}

.btn-half {
    padding-left: 16px !important;
    padding-right: 16px !important;
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   HEADER / NAVBAR
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.navbar-logo img {
    height: 75px !important;
    width: auto;
    max-height: none !important;
    transform: scale(1.4);
    transform-origin: left center;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.navbar-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition);
}

.navbar-links a:hover {
    color: var(--white);
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-cta .btn {
    padding: 10px 24px;
    font-size: 0.8rem;
    background: var(--gold-accent);
    color: var(--navy);
    border-color: var(--gold-accent);
}

.navbar-cta .btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: var(--transition);
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   HERO SECTION
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('assets/hero_bg.png') center/cover no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(6, 15, 29, 0.45) 0%,
            rgba(10, 22, 40, 0.55) 50%,
            rgba(6, 15, 29, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50px;
    color: var(--gold-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-accent);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 16px 24px;
    /* Reduced horizontal padding by ~30% */
}

@media (max-width: 768px) {
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll-indicator .arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    transform: rotate(45deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

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

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   SOCIAL PROOF BAR
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.social-proof {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-border);
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.proof-item .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    /* Números de volta pro azul */
    line-height: 1;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.proof-item .number span {
    font-size: 1.5rem;
    font-weight: 600;
    margin-left: 4px;
    color: var(--gold-accent);
    /* Detalhes (mil, %) em dourado */
}

.proof-item .label {
    font-size: 0.85rem;
    color: var(--navy);
    /* Letras em azul */
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.proof-divider {
    width: 1px;
    height: 50px;
    background: var(--gray-border);
    /* Divisor volta pro cinza */
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   EMPREENDIMENTOS SECTION
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.empreendimentos {
    padding: var(--section-padding);
    background: var(--off-white);
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-muted);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* â€” Featured Launch Card â€” */
.emp-featured {
    margin-bottom: 48px;
}

.emp-featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
    transition: var(--transition);
}

.emp-featured-card:hover {
    box-shadow: 0 30px 80px rgba(10, 22, 40, 0.14);
    transform: translateY(-4px);
}

.emp-featured-img {
    position: relative;
    overflow: hidden;
    min-height: 420px;
}

.emp-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-bg-verde {
    background-color: #12281E;
    /* Verde Escuro UBB */
}

.emp-featured-card:hover .emp-featured-img img {
    transform: scale(1.05);
}

.emp-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
}

.emp-badge--lancamento {
    background: var(--gold-accent);
    color: var(--navy);
}

.emp-badge--pre {
    background: var(--navy);
    color: var(--white);
}

.emp-featured-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.emp-featured-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.emp-featured-content p {
    color: var(--gray-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.emp-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.emp-highlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--off-white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--navy);
}

.emp-highlight-tag svg {
    width: 16px;
    height: 16px;
    color: var(--gold-accent);
}

.emp-featured-content .btn {
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

/* â€” Pre-Launch Cards Grid â€” */
.emp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.emp-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.06);
    height: 550px;
    cursor: pointer;
}

.emp-card-img {
    position: absolute;
    inset: 0;
    height: 100%;
    z-index: 1;
    background: var(--navy);
}

.emp-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.4) 30%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.emp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.img-bg-top {
    object-position: top center;
}

.emp-card:hover .emp-card-img img {
    transform: scale(1.05);
}

.emp-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 32px;
    background: rgba(16, 32, 54, 0.70);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    transform: translateY(calc(100% - 94px));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.emp-card:hover .emp-card-content,
.emp-card.active .emp-card-content {
    transform: translateY(0);
}

.emp-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.emp-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0;
    flex: 1;
    text-align: center;
}

.emp-card-arrow {
    width: 24px;
    height: 24px;
    color: var(--white);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.emp-card:hover .emp-card-arrow,
.emp-card.active .emp-card-arrow {
    transform: rotate(180deg);
}

.emp-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
}

.emp-card:hover .emp-card-content p,
.emp-card.active .emp-card-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.emp-card-content .emp-highlights {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0s;
}

.emp-card:hover .emp-card-content .emp-highlights,
.emp-card.active .emp-card-content .emp-highlights {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.emp-card-content .emp-highlight-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.emp-card-content .btn-navy {
    background: var(--gold-accent);
    color: var(--navy);
    border-color: var(--gold-accent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    transition-delay: 0s;
    width: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.emp-card-content .btn-navy:hover {
    background: var(--gold-light);
    transform: translateY(0) scale(1.02);
}

.emp-card:hover .emp-card-content .btn-navy,
.emp-card.active .emp-card-content .btn-navy {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

@media (max-width: 768px) {
    .emp-card-content .btn-navy {
        font-size: 0.8rem;
        padding: 12px 20px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    /* Force close state to override sticky :hover on touch devices */
    .emp-grid .emp-card:not(.active) .emp-card-content {
        transform: translateY(calc(100% - 94px));
    }

    .emp-grid .emp-card:not(.active) .emp-card-arrow {
        transform: rotate(0deg);
    }

    .emp-grid .emp-card:not(.active) .emp-card-content p,
    .emp-grid .emp-card:not(.active) .emp-card-content .emp-highlights,
    .emp-grid .emp-card:not(.active) .emp-card-content .btn-navy {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   PROBLEM / SOLUTION (DARK NAVY)
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.problem-solution {
    padding: var(--section-padding);
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.ps-header {
    text-align: center;
    margin-bottom: 64px;
}

.ps-header .section-title {
    color: var(--white);
}

.ps-header .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto;
}

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

.ps-card {
    padding: 40px;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.ps-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.ps-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(201, 168, 76, 0.12);
    margin-bottom: 24px;
}

.ps-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold-accent);
}

.ps-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.ps-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   HOW IT WORKS
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.how-it-works {
    padding: var(--section-padding);
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
}

.step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold-accent);
}

.step:hover .step-icon {
    transform: scale(1.1);
    background: rgba(201, 168, 76, 0.2);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.2);
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.step p {
    color: var(--gray-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

/* -----------------------------------------
   TESTIMONIALS
   ----------------------------------------- */
.testimonials {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-title {
    color: var(--white);
}

/* -- Carousel -- */
.carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--border-radius);
}

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

.testimonial-card {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    text-align: center;
    padding: 60px 56px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: var(--border-radius);
    position: relative;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 7rem;
    color: var(--gold-accent);
    opacity: 0.15;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author-info .name {
    font-weight: 700;
    color: var(--white);
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.testimonial-author-info .role {
    font-size: 0.85rem;
    color: var(--gold-accent);
    margin-top: 4px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: var(--navy);
    transform: scale(1.08);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--gold-accent);
    width: 32px;
    border-radius: 6px;
}

/* Mobile Carousel */
@media (max-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }

    .testimonial-card {
        padding: 40px 28px;
    }

    .testimonial-card blockquote {
        font-size: 1rem;
        line-height: 1.7;
    }

    .testimonial-card::before {
        font-size: 5rem;
        top: 8px;
    }

    .carousel-controls {
        margin-top: 32px;
        gap: 14px;
    }

    .carousel-btn {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 32px 20px;
    }

    .testimonial-card blockquote {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .testimonial-author-info .name {
        font-size: 0.95rem;
    }

    .testimonial-author-info .role {
        font-size: 0.8rem;
    }
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   FAQ
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.faq {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-accent);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--gray-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--gold-accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 24px;
    color: var(--gray-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   FINAL CTA
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.final-cta {
    padding: 120px 0;
    background: var(--navy);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta .section-title {
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .guarantee {
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   FOOTER
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.footer {
    padding: 60px 0 30px;
    background: var(--off-white);
    border-top: 1px solid var(--gray-border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--gray-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--gray-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--navy);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-border);
    color: var(--navy);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--gray-muted);
}

.footer-bottom-links a:hover {
    color: var(--navy);
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   ANIMATIONS ON SCROLL (via IntersectionObserver)
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”
   RESPONSIVE
   â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€”â€” */
@media (max-width: 1024px) {
    .emp-featured-card {
        grid-template-columns: 1fr;
    }

    .emp-featured-img {
        min-height: 300px;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-container::before {
        display: none;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 72px 0;
    }

    .navbar-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 22, 40, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 999;
    }

    .navbar-links.active {
        display: flex;
    }

    .navbar-links a {
        font-size: 1.2rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

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

    .hero h1 {
        font-size: 2rem;
    }

    .social-proof-inner {
        gap: 32px;
    }

    .proof-divider {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =============================================
   PROMO RAFFLE SECTION
   ============================================= */
.promo-raffle {
    padding: 100px 0;
    background: #060F1D; /* Navy Deep */
    color: var(--white);
    overflow: hidden;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.promo-img-container {
    position: relative;
    border-radius: var(--border-radius);
}

.promo-car-img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    display: block;
    border: 1px solid rgba(255,255,255,0.1);
}

.promo-badge-reward {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #132240;
    border: 2px solid var(--gold-accent);
    padding: 12px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 5;
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
}

.promo-badge-reward span:first-child {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.promo-badge-reward span:last-child {
    font-size: 0.85rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gold-accent);
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-tag {
    display: inline-block;
    padding: 6px 18px;
    border: 1.5px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.promo-title em {
    font-style: italic;
    color: var(--gold-accent);
}

.promo-title strong {
    font-style: italic;
    color: var(--gold-accent);
    font-weight: 700;
}

.promo-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 35px;
    line-height: 1.7;
}

.promo-btn {
    background: var(--gold-accent);
    color: var(--navy-deep);
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.promo-btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.3);
    color: var(--navy-deep);
}

.promo-legal {
    margin-top: 20px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

@media (max-width: 991px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .promo-content {
        align-items: center;
    }
    .promo-badge-reward {
        right: 10px;
        top: 10px;
    }
}