/* ========================================
   MUNDOS DE RIQUEZA · BRANDING & STYLES
   Paleta: Dorado místico + Violeta profundo
======================================== */

:root {
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --gold-dark: #a0822c;
    --champagne: #f5e6c8;
    --bg-deep: #0a0612;
    --bg-dark: #120822;
    --bg-purple: #1a0a2e;
    --purple-mid: #2d1452;
    --purple-light: #4a1a5c;
    --text-light: #f0e6d2;
    --text-muted: #b8a8c8;
    --gradient-gold: linear-gradient(135deg, #f5d76e 0%, #d4af37 50%, #a0822c 100%);
    --gradient-mystic: linear-gradient(135deg, #1a0a2e 0%, #2d1452 50%, #4a1a5c 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,6,18,0.4) 0%, rgba(10,6,18,0.7) 50%, rgba(10,6,18,0.95) 100%);
    --shadow-gold: 0 10px 40px rgba(212,175,55,0.3);
    --shadow-soft: 0 20px 60px rgba(0,0,0,0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-deep);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.7;
    cursor: none;
}

@media (max-width: 900px) {
    body { cursor: auto; }
}

/* Cursor glow */
.cursor-glow {
    position: fixed;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.6) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
    mix-blend-mode: screen;
}

@media (max-width: 900px) {
    .cursor-glow { display: none; }
}

/* Stars */
.stars {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(1px 1px at 20% 30%, white, transparent),
        radial-gradient(1px 1px at 60% 70%, white, transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(245,215,110,0.8), transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent),
        radial-gradient(2px 2px at 15% 65%, rgba(212,175,55,0.6), transparent);
    background-size: 600px 600px;
    opacity: 0.5;
    animation: twinkle 8s infinite alternate;
}

@keyframes twinkle {
    from { opacity: 0.3; }
    to { opacity: 0.7; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1.2rem 0;
    z-index: 100;
    transition: all 0.4s ease;
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    background: rgba(10,6,18,0.85);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.6rem;
    text-shadow: 0 0 20px rgba(212,175,55,0.6);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text em {
    font-style: normal;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a:not(.btn-vip-nav):hover {
    color: var(--gold);
}

.nav-menu a:not(.btn-vip-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:not(.btn-vip-nav):hover::after {
    width: 100%;
}

.btn-vip-nav {
    background: var(--gradient-gold);
    color: var(--bg-deep) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: var(--shadow-gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-vip-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(212,175,55,0.5);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px; height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px; right: -100%;
        flex-direction: column;
        background: rgba(10,6,18,0.98);
        backdrop-filter: blur(20px);
        width: 80%; max-width: 320px;
        height: calc(100vh - 70px);
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s;
        border-left: 1px solid rgba(212,175,55,0.2);
    }
    .nav-menu.active { right: 0; }
    .menu-toggle { display: flex; }
}

/* ========================================
   HERO
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 2rem;
}

.parallax-bg {
    position: absolute;
    top: -10%; left: -10%;
    width: 120%; height: 120%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
    will-change: transform;
}

@media (max-width: 768px) {
    .parallax-bg { background-attachment: scroll; }
}

.hero-bg {
    background-image: url('https://images.unsplash.com/photo-1419242902214-272b3f66ee7a?w=1920&q=80');
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero),
                radial-gradient(ellipse at center, transparent 0%, var(--bg-deep) 90%);
    z-index: 1;
}

/* Floating orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 2;
    animation: floatOrb 12s ease-in-out infinite;
    pointer-events: none;
}

.orb-1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(212,175,55,0.4), transparent 70%);
    top: 20%; left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(74,26,92,0.6), transparent 70%);
    top: 60%; right: 10%;
    animation-delay: 4s;
}

.orb-3 {
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(245,215,110,0.3), transparent 70%);
    bottom: 10%; left: 40%;
    animation-delay: 8s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    animation: fadeUp 1.2s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(212,175,55,0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 2rem;
    background: rgba(212,175,55,0.05);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    font-size: 0.7em;
    opacity: 0.8;
    font-weight: 400;
}

.title-gold {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    text-shadow: 0 0 80px rgba(212,175,55,0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 20px rgba(212,175,55,0.4)); }
    to { filter: drop-shadow(0 0 40px rgba(212,175,55,0.8)); }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--bg-deep);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212,175,55,0.5);
}

.btn-primary .btn-icon {
    transition: transform 0.3s;
}

.btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(212,175,55,0.5);
}

.btn-secondary:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.crown {
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 30%;
    background: var(--gold);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -30%; }
    100% { top: 100%; }
}

/* ========================================
   SECTIONS - GENERIC
======================================== */
section {
    padding: 7rem 0;
    position: relative;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 650px;
    font-weight: 300;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

/* ========================================
   ABOUT
======================================== */
.about {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-purple) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.about-text strong {
    color: var(--gold);
    font-weight: 500;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(212,175,55,0.2);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-plus {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 500;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.about-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mystic-card {
    position: relative;
    width: 100%;
    max-width: 380px;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, rgba(45,20,82,0.8) 0%, rgba(74,26,92,0.6) 100%);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transform: rotate(-2deg);
    transition: transform 0.5s;
}

.mystic-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.card-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(212,175,55,0.3), transparent 70%);
    z-index: -1;
    filter: blur(30px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.card-symbol {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212,175,55,0.6);
}

.card-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.card-author {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-visual { height: 400px; }
    .stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .stat-num { font-size: 1.8rem; }
}

/* ========================================
   TOOLS
======================================== */
.tools {
    background: var(--bg-deep);
    overflow: hidden;
}

.tools-bg {
    background-image: url('https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=1920&q=80');
    opacity: 0.15;
}

.tools .container {
    position: relative;
    z-index: 2;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    position: relative;
    background: linear-gradient(180deg, rgba(26,10,46,0.6) 0%, rgba(10,6,18,0.9) 100%);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    cursor: pointer;
}

.tool-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(212,175,55,0.2);
}

.tool-card.featured {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212,175,55,0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 3;
    background: var(--gradient-gold);
    color: var(--bg-deep);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.tool-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.6s;
}

.tool-card:hover .tool-image {
    transform: scale(1.1);
}

.tool-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10,6,18,0.95) 100%);
}

.tool-content {
    padding: 1.8rem;
    position: relative;
}

.tool-icon {
    position: absolute;
    top: -30px; right: 1.5rem;
    width: 60px; height: 60px;
    background: var(--gradient-gold);
    color: var(--bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-gold);
    transition: transform 0.4s;
}

.tool-card:hover .tool-icon {
    transform: rotate(360deg);
}

.tool-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: var(--text-light);
}

.tool-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.tool-tag {
    display: inline-block;
    padding: 0.3rem 0.9rem;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* ========================================
   VIP
======================================== */
.vip {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-purple) 50%, var(--bg-deep) 100%);
    text-align: center;
    overflow: hidden;
}

.vip-bg {
    background-image: url('https://images.unsplash.com/photo-1531297484001-80022131f5a1?w=1920&q=80');
    opacity: 0.1;
}

.vip-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 10% 20%, var(--gold), transparent),
        radial-gradient(2px 2px at 30% 80%, var(--gold), transparent),
        radial-gradient(2px 2px at 70% 30%, var(--gold), transparent),
        radial-gradient(2px 2px at 90% 70%, var(--gold), transparent);
    background-size: 400px 400px;
    animation: particles 20s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes particles {
    from { background-position: 0 0; }
    to { background-position: 400px 400px; }
}

.crown-decoration {
    font-size: 4rem;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(212,175,55,0.6);
    margin-bottom: 1rem;
    animation: floatCrown 3s ease-in-out infinite;
}

@keyframes floatCrown {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.gold-tag {
    background: rgba(212,175,55,0.1);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
}

.vip-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 50px rgba(212,175,55,0.4);
}

.vip-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.vip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.vip-card {
    position: relative;
    background: linear-gradient(180deg, rgba(26,10,46,0.7) 0%, rgba(10,6,18,0.9) 100%);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.vip-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
}

.vip-card-premium {
    background: linear-gradient(180deg, rgba(74,26,92,0.8) 0%, rgba(45,20,82,0.9) 100%);
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(212,175,55,0.3);
}

.vip-card-premium:hover {
    transform: scale(1.08) translateY(-10px);
}

.vip-card-elite {
    background: linear-gradient(180deg, rgba(10,6,18,0.9) 0%, rgba(45,20,82,0.7) 100%);
}

.vip-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-deep);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
}

.vip-badge.elite {
    background: linear-gradient(135deg, #1a1a1a, #444);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.vip-card-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.vip-card-header h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.vip-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.2rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

.amount {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 600;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.vip-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.vip-features li {
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vip-features li.disabled {
    color: var(--text-muted);
    opacity: 0.4;
}

.btn-vip {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    width: 100%;
    justify-content: center;
}

.btn-vip:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-2px);
}

.btn-vip-gold {
    background: var(--gradient-gold);
    color: var(--bg-deep);
    border: none;
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.btn-vip-gold:hover {
    box-shadow: 0 15px 50px rgba(212,175,55,0.6);
}

@media (max-width: 900px) {
    .vip-grid { grid-template-columns: 1fr; }
    .vip-card-premium { transform: scale(1); }
    .vip-card-premium:hover { transform: translateY(-10px); }
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
    background: var(--bg-deep);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: linear-gradient(180deg, rgba(26,10,46,0.4) 0%, rgba(10,6,18,0.6) 100%);
    border: 1px solid rgba(212,175,55,0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s;
    position: relative;
}

.testimonial:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem; left: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.testimonial p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.author-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid var(--gold);
}

.testimonial-author strong {
    display: block;
    color: var(--text-light);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   CTA
======================================== */
.cta-section {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-purple) 100%);
    padding: 5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(74,26,92,0.6) 0%, rgba(45,20,82,0.8) 100%);
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 30px 80px rgba(212,175,55,0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.1), transparent 50%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

.cta-box h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
}

.cta-box h2 em {
    font-style: italic;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

.cta-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(10,6,18,0.6);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 50px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.cta-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: #050310;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212,175,55,0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1rem 0 1.5rem;
    font-size: 0.95rem;
}

.social {
    display: flex;
    gap: 1rem;
}

.social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}

.social a:hover {
    background: var(--gold);
    color: var(--bg-deep);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1.2rem;
    font-size: 1rem;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212,175,55,0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { justify-content: center; text-align: center; }
}

/* ========================================
   ANIMATIONS ON SCROLL
======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Tool card stagger */
.tool-card:nth-child(1) { transition-delay: 0.05s; }
.tool-card:nth-child(2) { transition-delay: 0.1s; }
.tool-card:nth-child(3) { transition-delay: 0.15s; }
.tool-card:nth-child(4) { transition-delay: 0.2s; }
.tool-card:nth-child(5) { transition-delay: 0.25s; }
.tool-card:nth-child(6) { transition-delay: 0.3s; }
.tool-card:nth-child(7) { transition-delay: 0.35s; }
.tool-card:nth-child(8) { transition-delay: 0.4s; }

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--gold), var(--gold-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
}
