:root {
    --gold:       #D4A017;
    --gold-dim:   #a88a1e;
    --gold-glow:  rgba(212, 160, 23, 0.18);
    --bg:         #07080b;
    --bg2:        #0d0f14;
    --surface:    rgba(255,255,255,0.03);
    --border:     rgba(255,255,255,0.07);
    --text:       #EEF0F3;
    --muted:      #6b7280;
    --green:      #22c55e;
    --white-line: #ffffff;
    --nav-bg:     rgba(7,8,11,0.9);
    --ticker-bg:  rgba(7,8,11,0.95);
}

@media (prefers-color-scheme: light) {
    :root {
        --bg:         #ffffff;
        --bg2:        #f8f9fa;
        --surface:    rgba(0,0,0,0.03);
        --border:     rgba(0,0,0,0.1);
        --text:       #07080b;
        --muted:      #4b5563;
        --white-line: #07080b;
        --nav-bg:     rgba(255,255,255,0.85);
        --ticker-bg:  rgba(255,255,255,0.95);
    }
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: none;
}

@media (prefers-color-scheme: light) {
    body::before { opacity: 0.05 !important; }
}

/* ──────── CURSOR ──────── */
#cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%,-50%);
    transition: transform 0.05s, width 0.25s, height 0.25s, background 0.25s;
    mix-blend-mode: difference;
}
#cursor-ring {
    position: fixed;
    width: 40px; height: 40px;
    border: 1px solid rgba(245,197,66,0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%,-50%);
    transition: all 0.15s ease;
}
body:hover #cursor { opacity:1; }

/* ──────── NOISE OVERLAY ──────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
}

/* ──────── NAV ──────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: all 0.4s;
}
nav.scrolled {
    background: var(--nav-bg);
    backdrop-filter: blur(24px);
    border-color: var(--border);
}

@media (prefers-color-scheme: light) {
    nav.scrolled { background: rgba(255,255,255,0.9); }
}

.nav-logo {
    display: flex;
    align-items: center;
}
.nav-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

@media (prefers-color-scheme: light) {
    .nav-links a { color: var(--text); }
}

.nav-links a:hover { color: var(--gold); }
.nav-cta {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 8px;
    transition: all 0.3s !important;
}

@media (prefers-color-scheme: light) {
    .nav-cta { border-color: var(--gold); color: var(--gold) !important; }
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: var(--bg) !important;
}

@media (prefers-color-scheme: light) {
    .nav-cta:hover { background: var(--gold) !important; color: #ffffff !important; }
}

/* ──────── TICKER ──────── */
.ticker-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 900;
    padding: 10px 0;
    background: var(--ticker-bg);
    border-top: 1px solid var(--border);
    overflow: hidden;
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    color: var(--muted);
}

@media (prefers-color-scheme: light) {
    .ticker-bar { border-top-color: var(--border); color: var(--text); }
}

.ticker-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: ticker 30s linear infinite;
}
.ticker-track span { white-space: nowrap; }
.ticker-track .up { color: var(--green); }
.ticker-track .gold-t { color: var(--gold); }
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ──────── HERO ──────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 140px 60px 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.65)), url('../images/hero_clean_compressed.png') center/cover no-repeat;
}

/* Grid lines bg */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 0%, black 30%, transparent 70%);
}

@media (prefers-color-scheme: light) {
    .hero::before { background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px); }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    animation: fadeUp 0.9s ease both;
    animation-delay: 0.1s;
}
.hero-eyebrow-line {
    width: 40px; height: 1px;
    background: var(--gold);
}
.hero-eyebrow span {
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    letter-spacing: 1px;
    line-height: 0.95;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 1s ease both;
    animation-delay: 0.25s;
}
.hero h1 .line-dim {
    display: block;
    color: #ffffff;
    opacity: 0.6;
}

@media (prefers-color-scheme: light) {
    .hero h1 .line-dim { color: #ffffff; opacity: 0.7; }
}

.hero h1 .line-gold {
    display: block;
    color: var(--gold);
    text-shadow: 0 10px 60px rgba(0,0,0,0.8);
}
.hero h1 .line-white { 
    display: block;
    color: #ffffff;
    text-shadow: 0 10px 60px rgba(0,0,0,0.8);
}

.hero-sub {
    margin-top: 40px;
    max-width: 600px;
    text-align: center;
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.6;
    animation: fadeUp 1s ease both;
    animation-delay: 0.4s;
}

.hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 20px;
    align-items: center;
    animation: fadeUp 1s ease both;
    animation-delay: 0.55s;
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .btn-gold, .btn-ghost {
        width: 100%;
        text-align: center;
        padding: 18px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.btn-gold {
    padding: 18px 44px;
    background: var(--gold);
    color: #07080b !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(245,197,66,0.3); }
.btn-gold:hover::before { left: 100%; }

.btn-ghost {
    padding: 18px 36px;
    border: 1px solid var(--border);
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    transition: all 0.3s;
}

@media (prefers-color-scheme: light) {
    .btn-ghost { border-color: var(--border); color: var(--muted); }
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* hero scroll indicator */
.scroll-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeUp 1s ease both 0.8s;
}
.scroll-hint span {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}
.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { opacity: 1; transform: scaleY(1); }
    50%      { opacity: 0.3; transform: scaleY(0.6); }
}

/* ──────── HERO LIVE STATS STRIP ──────── */
.stats-strip {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}
.strip-stat {
    text-align: center;
    flex: 1;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}
.strip-stat:last-child { border-right: none; }
.strip-stat .num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}
.strip-stat .num .counter { display: inline; }
.strip-stat .label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 6px;
}

/* ──────── SECTION SHARED ──────── */
section { position: relative; }
.container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}
.section-tag::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--gold);
}

/* ──────── VALUE PROPS ──────── */
.value-section {
    padding: 120px 0;
}
.value-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}
.value-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.9;
    max-width: 500px;
    letter-spacing: 1px;
}
.value-header p {
    max-width: 360px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
}
.prop-card {
    padding: 50px 44px;
    background: var(--bg2);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (prefers-color-scheme: light) {
    .prop-card { background: #ffffff; }
}

.prop-card:first-child { border-radius: 20px 0 0 20px; }
.prop-card:last-child  { border-radius: 0 20px 20px 0; }
.prop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-glow), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.prop-card:hover { transform: translateY(-8px); border-color: rgba(245,197,66,0.3); }
.prop-card:hover::before { opacity: 1; }

.prop-icon {
    font-size: 2rem;
    margin-bottom: 32px;
    display: block;
}
.prop-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.5rem;
    letter-spacing: 2px;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 10px;
    transition: all 0.4s;
}

@media (prefers-color-scheme: light) {
    .prop-num { color: var(--gold); opacity: 0.35; }
}

.prop-card:hover .prop-num { 
    opacity: 1;
    transform: scale(1.05);
}

.prop-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    transition: color 0.3s;
}
.prop-card:hover h3 { color: var(--gold); }
.prop-card p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }

/* ──────── FINANCIAL HIGHLIGHT ──────── */
.financial-section {
    padding: 120px 0;
    background: linear-gradient(rgba(7, 8, 11, 0.85), rgba(7, 8, 11, 0.85)), url('../images/financial_bg_compressed.png') center/cover no-repeat fixed;
}
.financial-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.financial-visual {
    position: relative;
}

/* Chart mockup */
.chart-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

@media (prefers-color-scheme: light) {
    .chart-card { background: #ffffff; }
}

.chart-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(245,197,66,0.06), transparent);
}
.chart-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}
.chart-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}
.chart-sub {
    font-size: 0.85rem;
    color: var(--green);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.chart-sub::before { content: '▲'; font-size: 0.7rem; }

/* SVG chart */
.chart-svg-wrap {
    margin-top: 30px;
    position: relative;
    height: 120px;
}
.chart-svg-wrap svg {
    width: 100%;
    height: 100%;
}

/* Floating badge */
.float-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 28px;
    backdrop-filter: blur(12px);
}
.float-badge .fb-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--green);
    letter-spacing: 1px;
}
.float-badge .fb-label {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

/* Payback timeline */
.payback-bar {
    margin-top: 28px;
}
.payback-bar-track {
    height: 6px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
}
.payback-bar-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold-dim), var(--gold));
    width: 0%;
    transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.payback-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    color: var(--muted);
    letter-spacing: 1px;
}

.financial-text { padding-left: 20px; }
.financial-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    letter-spacing: 1px;
    line-height: 0.92;
    margin-bottom: 28px;
    color: #FFEB3B; /* Amarelo Claro */
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.financial-text h2 span {
    color: #ffffff;
}
.financial-text h2 em {
    font-style: normal;
    color: var(--gold);
}
.financial-text > p {
    color: rgba(255, 255, 255, 0.9); /* Branco quase puro para leitura clara */
    font-size: 1.15rem;
    line-height: 1.75;
    margin-bottom: 48px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.kpi-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.kpi-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
}

@media (prefers-color-scheme: light) {
    .kpi-item { background: #ffffff; }
}

.kpi-item:hover { border-color: rgba(245,197,66,0.3); }
.kpi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.kpi-content { flex: 1; }
.kpi-content strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.kpi-content span {
    font-size: 0.82rem;
    color: var(--muted);
}
.kpi-val {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* ──────── HOW IT WORKS ──────── */
.how-section {
    padding: 120px 0;
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

@media (prefers-color-scheme: light) {
    .how-section { background: #f8f9fa; }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
}
.step {
    text-align: center;
    padding: 0 30px;
    position: relative;
}
.step-num {
    width: 76px; height: 76px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin: 0 auto 28px;
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

@media (prefers-color-scheme: light) {
    .step-num { background: #ffffff; }
}

.step:hover .step-num {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(245,197,66,0.4);
}
.step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.step p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ──────── TESTIMONIALS ──────── */
.testimonials-section {
    padding: 120px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 70px;
}
.testi-card {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s;
    position: relative;
}

@media (prefers-color-scheme: light) {
    .testi-card { background: #ffffff; }
}

.testi-card::before {
    content: '"';
    position: absolute;
    top: 24px; right: 32px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(245,197,66,0.08);
    line-height: 1;
}
.testi-card:hover { border-color: rgba(245,197,66,0.25); transform: translateY(-6px); }
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 0.9rem; }
.testi-card p {
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.75;
    margin-bottom: 28px;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dim), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--bg);
}

@media (prefers-color-scheme: light) {
    .author-avatar { color: #ffffff; }
}

.author-info strong { display: block; font-size: 0.9rem; }
.author-info span { font-size: 0.8rem; color: var(--muted); }

/* ──────── CTA ──────── */
.cta-section {
    padding: 120px 0;
}
.cta-inner {
    position: relative;
    border: 1px solid rgba(245,197,66,0.2);
    border-radius: 32px;
    padding: 100px 80px;
    text-align: center;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 0%, rgba(245,197,66,0.06), transparent 70%);
}
.cta-inner::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(245,197,66,0.15), transparent 50%);
    pointer-events: none;
}
/* animated corner accents */
.cta-corner {
    position: absolute;
    width: 60px; height: 60px;
    border-color: rgba(245,197,66,0.4);
    border-style: solid;
}
.cta-corner.tl { top: 20px; left: 20px; border-width: 1px 0 0 1px; }
.cta-corner.tr { top: 20px; right: 20px; border-width: 1px 1px 0 0; }
.cta-corner.bl { bottom: 20px; left: 20px; border-width: 0 0 1px 1px; }
.cta-corner.br { bottom: 20px; right: 20px; border-width: 0 1px 1px 0; }

.cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    letter-spacing: 2px;
    line-height: 0.9;
    margin-bottom: 24px;
}
.cta-inner h2 span { color: var(--gold); }
.cta-inner p {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto 48px;
    line-height: 1.7;
}
.cta-fine {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    letter-spacing: 1px;
}

/* ──────── FOOTER ──────── */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-logo {
    display: flex;
    align-items: center;
    opacity: 1 !important;
}
.footer-logo img {
    height: 80px !important;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}
.footer-links {
    display: flex;
    gap: 32px;
}
.footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s;
}

@media (prefers-color-scheme: light) {
    .footer-links a:hover { color: var(--gold); }
}

.footer-links a:hover { color: var(--gold); }
.footer-right { font-size: 0.75rem; color: var(--muted); text-align: right; line-height: 1.6; }

/* ──────── NEWS ──────── */
.news-section { padding: 120px 0; background: var(--bg2); position: relative; overflow: hidden; }

@media (prefers-color-scheme: light) {
    .news-section { background: #f8f9fa; }
}

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.news-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.4s; text-decoration: none; color: inherit; }

@media (prefers-color-scheme: light) {
    .news-card { background: #ffffff; }
}

.news-card:hover { transform: translateY(-10px); border-color: var(--gold-dim); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.news-img { width: 100%; height: 200px; background: var(--bg); position: relative; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.6s; }
.news-card:hover .news-img img { transform: scale(1.1); opacity: 0.9; }
.news-content { padding: 30px; }
.news-date { font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
.news-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; margin-bottom: 15px; line-height: 1.2; color: var(--text); }
.news-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 992px) { .news-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .news-grid { grid-template-columns: 1fr; } }

/* ──────── ANIMATIONS ──────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ──────── RESPONSIVE ──────── */
@media (max-width: 1100px) {
    .cards-grid { grid-template-columns: 1fr; }
    .prop-card:first-child { border-radius: 20px 20px 0 0; }
    .prop-card:last-child  { border-radius: 0 0 20px 20px; }
    .financial-inner { grid-template-columns: 1fr; gap: 60px; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .value-header { flex-direction: column; gap: 24px; align-items: flex-start; }
    nav { padding: 18px 30px; }
    footer { flex-direction: column; gap: 30px; text-align: center; }
}
@media (max-width: 600px) {
    .container { padding: 0 24px; }
    .hero { padding: 120px 24px 80px; }
    .hero-actions { flex-direction: column; }
    .stats-strip { flex-direction: column; gap: 32px; padding: 40px 24px; }
    .strip-stat { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
    .strip-stat:last-child { border-bottom: none; padding-bottom: 0; }
    .cta-inner { padding: 60px 30px; }
    .steps-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 40px; text-align: center; }
    .footer-links { justify-content: center; }
    .cta-inner h2 { font-size: 3rem; }
    .cta-inner .btn-gold {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        line-height: 1.2;
        min-height: 60px;
        padding: 16px 20px;
        text-align: center;
        margin: 20px auto 0;
        word-wrap: break-word;
    }
    .container { padding: 0 24px; }
    .cta-inner { padding: 60px 24px; }
    .cta-fine { font-size: 0.65rem; line-height: 1.5; }
}
