:root {
    --bg-color: #0d0d0d;
    --nav-bg: rgba(26, 26, 26, 0.5);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --primary-color: #FF4A11;
    --primary-gradient: linear-gradient(135deg, #FF4A11, #FF8C00);
    --primary-hover: #E03E0B;
    --secondary-color: #7C3AED;
    --card-bg: rgba(30, 30, 30, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
}

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

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(26,26,26,0.8) 0%, rgba(13,13,13,1) 60%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Sutil ruido/textura */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03; 
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glow Blobs */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}
.glow-1 { top: -10%; left: -5%; background: var(--primary-color); }
.glow-2 { bottom: 10%; right: -5%; background: var(--secondary-color); }

/* Nav Pill */
.nav-container {
    position: fixed;
    top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.pill-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 20px;
    border-radius: 50px;
    width: 90%;
    max-width: 1200px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-cta {
    background-color: var(--text-primary);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: transform 0.2s;
}

.btn-cta:hover {
    transform: scale(1.05);
}

/* Hero Asimétrico */
.hero {
    display: flex;
    min-height: 100vh;
    padding: 180px 5% 50px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 60%);
    z-index: -1;
    filter: blur(80px);
    pointer-events: none;
}

.hero-left {
    flex: 1;
    z-index: 2;
}

/* Badge OS */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 74, 17, 0.1);
    border: 1px solid rgba(255, 74, 17, 0.3);
    padding: 6px 14px;
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideUp 0.8s ease-out forwards;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.massive-title {
    font-size: 7.5vw;
    line-height: 0.85;
    font-weight: 800;
    letter-spacing: -6px;
    margin-bottom: 2rem;
}

.massive-title span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.massive-title .line-1 { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards, textFloat 6s ease-in-out 1s infinite alternate; }
.massive-title .line-2 { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards, textFloat 5s ease-in-out 1.2s infinite alternate; }
.massive-title .line-3 { animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards, textFloat 7s ease-in-out 1.4s infinite alternate; }

@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes textFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(0.5deg); }
}

.accent {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(255, 74, 17, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 3rem;
    font-weight: 500;
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.4s;
}

.btn-cta-large {
    display: inline-block;
    background-color: var(--text-primary);
    color: #000;
    padding: 18px 45px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255,255,255,0.1);
    opacity: 0;
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

.btn-cta-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

/* Collage Derecho */
.hero-right {
    flex: 1.2;
    position: relative;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    width: 420px;
    padding: 1px; /* Para simular un borde gradiente */
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.8);
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    pointer-events: none; /* Ignore mouse completely */
}

.card-inner {
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-radius: 19px;
    background: var(--card-bg);
}

.dark-card {
    background: rgba(10, 10, 10, 0.9);
}

.accent-card {
    background: linear-gradient(135deg, var(--primary-color), #D0350B);
}

.card-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 12px;
}

.card-text {
    flex: 1;
}

.card-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.card-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.accent-card .card-text h4,
.accent-card .card-text p {
    color: rgba(255,255,255,0.9);
}

.price {
    font-weight: 800;
    font-size: 1.3rem;
    color: #FFF !important;
    margin-top: 5px;
}

/* Posiciones y Rotaciones del Collage */
.card-1 {
    top: 5%;
    left: -5%;
    transform: rotate(-8deg);
    z-index: 2;
}

.card-2 {
    top: 35%;
    left: 15%;
    transform: rotate(4deg);
    z-index: 3;
}

.card-3 {
    bottom: 5%;
    right: 5%;
    transform: rotate(-5deg);
    z-index: 1;
}

/* Animaciones */
@keyframes float {
    0% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
    100% { transform: translateY(0) rotate(-8deg); }
}
@keyframes floatAlt {
    0% { transform: translateY(0) rotate(4deg); }
    50% { transform: translateY(15px) rotate(4deg); }
    100% { transform: translateY(0) rotate(4deg); }
}

.float-animation { animation: float 6s ease-in-out infinite; }
.float-animation-alt { animation: floatAlt 8s ease-in-out infinite; }

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-top: 150px;
        text-align: center;
    }
    
    .massive-title {
        font-size: 4rem;
        line-height: 0.9;
        letter-spacing: -3px;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-right {
        width: 100%;
        height: 500px;
    }

    .card {
        width: 300px;
    }

    .nav-links {
        display: none;
    }
}

/* --- Nuevas Secciones: Features & Pricing --- */

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

.section-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features - Bento Grid */
.features-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
}

.bento-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 74, 17, 0.3);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 74, 17, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* WOW Features CSS */
.bento-content {
    position: relative;
    z-index: 1;
}

.feature-number {
    position: absolute;
    top: -20px;
    right: 0px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s ease;
    line-height: 1;
}

.bento-card:hover .feature-number {
    color: rgba(255, 74, 17, 0.08);
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    letter-spacing: 1px;
}

.live-badge .pulse-dot {
    background-color: #10B981;
    box-shadow: 0 0 10px #10B981;
}

.glow-border {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(60deg, transparent 40%, var(--primary-color) 50%, transparent 60%);
    background-size: 300% 300%;
    animation: borderGlow 4s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

@keyframes borderGlow {
    0% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bento-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.bento-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.5;
}

.card-large { grid-column: span 2; }
.card-small-right { grid-column: span 1; }
.card-small-left { grid-column: span 1; }
.card-wide { grid-column: span 2; }

/* Pricing Section */
.pricing-section {
    padding: 100px 5% 150px;
    position: relative;
    z-index: 2;
}

.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pro-card {
    border-color: rgba(255, 74, 17, 0.6);
    box-shadow: 0 20px 80px rgba(255, 74, 17, 0.15);
    padding: 70px 40px;
    transform: scale(1.08) translateY(-15px);
    z-index: 2;
}

.pro-card:hover {
    transform: scale(1.08) translateY(-22px);
    box-shadow: 0 30px 100px rgba(255, 74, 17, 0.25);
}

.pro-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(255, 74, 17, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.basic-card .pricing-header h3 {
    color: var(--text-primary);
}

.basic-btn {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.basic-btn:hover {
    background-color: rgba(255,255,255,0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pricing-header .price {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: flex-start;
    line-height: 1;
    margin-bottom: 30px;
}

.pricing-header .price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.check {
    color: var(--primary-color);
    font-weight: bold;
}

/* Micro Copy */
.micro-copy {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 500;
}

/* Trust Band (Social Proof) */
.trust-band {
    text-align: center;
    padding: 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(10, 10, 10, 0.4);
    margin-top: 40px;
}

.trust-band p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Trust Logos Marquee */
.trust-logos-marquee {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.logo-svg {
    opacity: 0.6;
    margin: 0 30px;
    vertical-align: middle;
    filter: grayscale(100%);
    transition: opacity 0.3s, filter 0.3s;
}

.logo-svg:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pain Point Section */
.pain-section {
    padding: 80px 5%;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
}

.pain-container {
    max-width: 800px;
    margin: 0 auto;
}

.pain-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.accent-red {
    color: #ff3333;
    text-shadow: 0 0 30px rgba(255, 51, 51, 0.4);
}

.pain-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pro Card Highlight (Badge) */
.pro-card-highlight {
    background: rgba(20, 20, 20, 0.9);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 50px 30px;
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: visible;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 80px rgba(255, 74, 17, 0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 74, 17, 0.4);
}

/* FAQ Section */
.faq-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-color);
    padding: 25px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.6);
}

.faq-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 5%;
    text-align: center;
    background-color: rgba(10, 10, 10, 0.9);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive updates for new sections */
@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .card-large, .card-small-right, .card-small-left, .card-wide {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .section-title {
        font-size: 3rem;
    }

    .pricing-container {
        flex-direction: column;
        gap: 40px;
    }

    .pro-card {
        transform: scale(1);
    }
    
    .pro-card:hover {
        transform: translateY(-5px);
    }
}

/* Metrics Relief Section */
.metrics-section {
    padding: 60px 5%;
    max-width: 1200px;
    margin: -80px auto 40px;
    position: relative;
    z-index: 5;
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 74, 17, 0.3);
}

.metric-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.metric-card h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Objections Section */
.objections-section {
    padding: 100px 5% 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.objection-card {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.objection-card h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-style: italic;
    border-left: 3px solid var(--primary-color);
    padding-left: 15px;
}

.objection-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .metrics-container, .objections-grid {
        grid-template-columns: 1fr;
    }
}

/* Conversion Boosters */
.btn-vibrant {
    background: var(--primary-gradient) !important;
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(255, 74, 17, 0.4) !important;
    border: none !important;
    transform: scale(1.05);
    animation: pulse-soft 2s infinite;
}

.btn-vibrant:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 74, 17, 0.6) !important;
}

@keyframes pulse-soft {
    0% { box-shadow: 0 0 0 0 rgba(255, 74, 17, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 74, 17, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 74, 17, 0); }
}

.testimonial-section {
    padding: 60px 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.stars {
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.quote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.author strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.author span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: -10px;
    opacity: 0.7;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* Animations and JavaScript Hook Classes */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Scrolled State */
#navbar.scrolled .pill-nav {
    background-color: rgba(10, 10, 10, 0.9);
    box-shadow: 0 10px 40px rgba(255, 74, 17, 0.15);
    border-color: rgba(255, 74, 17, 0.4);
}
