/* =========================================
   ESTATEICONS OS | SILICON VALLEY EDITION
   ========================================= */

/* --- 1. VARIABLES & RESET --- */
:root {
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --dark-bg: #050505;
    --glass-card: rgba(20, 20, 20, 0.6);
    --glass-nav: rgba(10, 10, 10, 0.8);
    --border-light: rgba(255, 255, 255, 0.08);
    --nebula-blue: rgba(79, 70, 229, 0.15);
    --tech-green: #10b981;
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.3);
    
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter Tight', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: var(--font-body); background: var(--dark-bg); color: #f8fafc; 
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

/* --- 2. BACKGROUND & ATMOSPHERE --- */
.luxury-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: #050505; }
.grid-pattern-gold { 
    position: absolute; width: 100%; height: 100%; 
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px), 
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px); 
    background-size: 60px 60px; 
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%); 
}
.silicon-nebula {
    position: absolute; width: 800px; height: 800px; 
    background: var(--nebula-blue); filter: blur(120px); border-radius: 50%; opacity: 0.6;
    animation: pulseNebula 10s infinite alternate; pointer-events: none;
}
.top-right { top: -200px; right: -200px; background: rgba(79, 70, 229, 0.1); }
.bottom-left { bottom: -200px; left: -200px; background: rgba(212, 175, 55, 0.05); }
@keyframes pulseNebula { 0% { opacity: 0.4; transform: scale(1); } 100% { opacity: 0.7; transform: scale(1.1); } }

/* --- 3. UTILITIES & TYPOGRAPHY --- */
.mono-text { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.05em; text-transform: uppercase; }
.gold-gradient { background: linear-gradient(to right, #d4af37, #fceeb5, #d4af37); -webkit-background-clip: text; color: transparent; }
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; } .mb-3 { margin-bottom: 1rem; }
.mt-auto { margin-top: auto; } /* Key for pricing alignment */

/* --- 4. NAVIGATION BAR --- */
.glass-navbar { 
    position: fixed; top: 24px; left: 50%; transform: translateX(-50%); 
    width: 95%; max-width: 1100px; height: 72px; z-index: 1000; 
    background: var(--glass-nav); backdrop-filter: blur(20px); 
    border: 1px solid var(--border-light); border-radius: 100px; 
    display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; 
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5);
}
.nav-logo-img { height: 38px; cursor: pointer; filter: brightness(10); transition: 0.3s; }
.nav-links-center { display: flex; align-items: center; gap: 2rem; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-item { text-decoration: none; color: #888; font-weight: 500; font-size: 0.9rem; transition: 0.3s; position: relative; }
.nav-item:hover, .nav-item.active { color: white; }
.status-indicator {
    display: flex; align-items: center; gap: 8px; font-size: 0.65rem; font-weight: 700; color: var(--tech-green);
    background: rgba(16, 185, 129, 0.1); padding: 4px 10px; border-radius: 100px; border: 1px solid rgba(16, 185, 129, 0.2);
}
.pulse-dot { width: 6px; height: 6px; background: var(--tech-green); border-radius: 50%; box-shadow: 0 0 8px var(--tech-green); animation: blink 2s infinite; }
.gold-btn { 
    text-decoration: none; background: linear-gradient(135deg, #d4af37, #b5952f); 
    color: black; padding: 10px 22px; border-radius: 100px; 
    font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: 0.3s; 
}
.gold-btn:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); color: black; }

/* --- 5. HERO SECTION --- */
.vision-container { padding-top: 140px; max-width: 1200px; margin: 0 auto; padding-bottom: 4rem; width: 92%; }
.vision-hero { text-align: center; margin-bottom: 6rem; position: relative; }

.badge-pill { 
    display: inline-flex; align-items: center; gap: 10px; 
    background: rgba(255,255,255,0.03); border: 1px solid var(--border-light);
    padding: 8px 18px; border-radius: 100px; 
    font-size: 0.8rem; font-weight: 600; color: white; margin-bottom: 2rem; 
    backdrop-filter: blur(5px);
}
.hero-logo-large { height: 60px; display: block; margin: 0 auto 1.5rem auto; opacity: 0.9; }

/* H1 ANIMATION */
.hero-title { 
    font-family: var(--font-display); font-size: 4.8rem; line-height: 1.1; 
    font-weight: 800; margin-bottom: 1.5rem; letter-spacing: -1.5px; 
}
.title-line { overflow: hidden; display: block; }
.reveal-text { 
    display: inline-block; transform: translateY(100%); 
    animation: textReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards; 
}
.delay-text { animation-delay: 0.2s; }

.animated-gradient {
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}
@keyframes textReveal { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes shine { to { background-position: 200% center; } }

.hero-subtitle { font-size: 1.25rem; color: #94a3b8; max-width: 700px; margin: 0 auto 3rem auto; line-height: 1.6; }

/* --- 6. TICKER --- */
.trusted-section { margin-top: 5rem; }
.ticker-label { color: #555; margin-bottom: 1.5rem; font-size: 0.7rem; letter-spacing: 2px; text-align: center; }
.ticker-wrapper { 
    background: rgba(255,255,255,0.02); border-top: 1px solid var(--border-light); 
    border-bottom: 1px solid var(--border-light); padding: 25px 0; overflow: hidden; position: relative; 
}
.ticker-track { display: flex; gap: 5rem; width: max-content; animation: scrollLogos 40s linear infinite; align-items: center; }
.logo-item { width: 140px; height: 60px; display: flex; align-items: center; justify-content: center; opacity: 0.4; filter: grayscale(100%); transition: 0.3s; }
.logo-item.bg-fix { background: white; border-radius: 6px; padding: 8px; opacity: 0.6; filter: none; }
.logo-item.bg-fix img { filter: grayscale(100%); mix-blend-mode: normal; }
.logo-item:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }
.logo-item.bg-fix:hover { opacity: 1; }
.logo-item.bg-fix:hover img { filter: none; }
.logo-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes scrollLogos { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- 7. ORIGIN STORY --- */
.origin-story { 
    margin: 6rem 0; background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent); 
    border-radius: 30px; border: 1px solid var(--border-light); padding: 4rem; position: relative; overflow: hidden; 
}
.origin-story::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gold); box-shadow: 0 0 15px var(--gold); }
.origin-badge { color: var(--gold); margin-bottom: 1rem; opacity: 0.8; }
.story-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; margin-top: 2rem; }
.story-text { font-size: 1.1rem; line-height: 1.7; color: #a1a1aa; margin-bottom: 1.5rem; }
.story-text strong { color: white; }
.story-text.highlight { color: white; border-left: 2px solid #333; padding-left: 1rem; font-style: italic; }
.stat-card { background: rgba(0,0,0,0.4); padding: 2rem; border-radius: 16px; border: 1px solid var(--border-light); text-align: center; margin-bottom: 1rem; transition: 0.3s; }
.stat-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-3px); }
.stat-num { display: block; font-family: var(--font-display); font-size: 3rem; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.8rem; color: #666; font-family: var(--font-mono); text-transform: uppercase; }

/* --- NEW: NEURAL DASHBOARD --- */
.neural-section { margin-bottom: 8rem; position: relative; }
.dashboard-preview {
    width: 100%; max-width: 800px; height: 450px; margin: 0 auto;
    background: rgba(10, 10, 10, 0.8); border: 1px solid #333; border-radius: 16px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    display: flex; overflow: hidden; position: relative;
    backdrop-filter: blur(20px);
}
.dash-sidebar { width: 60px; border-right: 1px solid #222; padding: 20px 0; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; margin-bottom: 5px; }
.dash-dot.red { background: #ef4444; } .dash-dot.yellow { background: #eab308; } .dash-dot.green { background: #22c55e; }
.dash-line { width: 60%; height: 2px; background: #333; margin-bottom: 8px; border-radius: 2px; }
.dash-main { flex: 1; padding: 20px; display: flex; flex-direction: column; }
.dash-header { display: flex; justify-content: space-between; margin-bottom: 20px; }
.dash-title-block { width: 150px; height: 20px; background: #222; border-radius: 4px; }
.dash-user { width: 30px; height: 30px; background: #333; border-radius: 50%; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.dash-card { background: #151515; border: 1px solid #222; padding: 15px; border-radius: 8px; height: 100px; position: relative; }
.dash-card.wide { grid-column: span 2; height: 120px; }
.tiny { font-size: 0.5rem; color: #555; }
.graph-line { width: 100%; height: 60px; margin-top: 10px; background: linear-gradient(90deg, transparent 0%, rgba(79, 70, 229, 0.1) 50%, transparent 100%); border-bottom: 2px solid var(--gold); position: relative; }
.big-number { font-size: 2rem; font-weight: 700; color: white; margin-top: 5px; }
.big-number.gold { color: var(--gold); }
.ai-chat-bar { margin-top: auto; background: #111; padding: 10px; border-radius: 6px; border: 1px solid #222; display: flex; align-items: center; }
.ai-typing span { display: inline-block; width: 4px; height: 4px; background: var(--gold); border-radius: 50%; margin-right: 3px; animation: blink 1s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; } .ai-typing span:nth-child(3) { animation-delay: 0.4s; }
.scan-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--gold);
    box-shadow: 0 0 20px var(--gold); opacity: 0.5; animation: scanDown 4s infinite linear;
}
@keyframes scanDown { 0% { top: 0; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { top: 100%; opacity: 0; } }

/* --- 8. BENTO GRID --- */
.bento-section { margin-bottom: 8rem; }
.section-title { font-family: var(--font-display); font-size: 3rem; color: white; margin-bottom: 0.5rem; letter-spacing: -1px; }
.section-desc { color: #888; font-size: 1.1rem; margin-bottom: 3rem; }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card {
    background: var(--glass-card); border: 1px solid var(--border-light); border-radius: 24px; padding: 2rem;
    transition: all 0.4s ease; backdrop-filter: blur(10px); position: relative; overflow: hidden;
}
.bento-card:hover { border-color: rgba(212, 175, 55, 0.5); transform: translateY(-5px); box-shadow: 0 15px 40px -10px rgba(0,0,0,0.6); }
.bg-gradient-dark { background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2)); }
.bento-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: white; margin-bottom: 0.5rem; }
.bento-card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }
.span-2 { grid-column: span 2; } .span-1 { grid-column: span 1; } .row-span-2 { grid-row: span 2; }
.card-icon-gold { width: 44px; height: 44px; background: rgba(212, 175, 55, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1.5rem; }
.mini-agent-list { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 1rem; }
.agent-pill { display: flex; align-items: center; gap: 10px; padding: 12px; background: rgba(255,255,255,0.03); border-radius: 8px; border: 1px solid var(--border-light); font-size: 0.85rem; font-weight: 500; }
.agent-pill i { width: 16px; height: 16px; color: var(--gold); }

/* --- 9. PRICING SECTION (FIXED) --- */
.pricing-section { text-align: center; margin-bottom: 8rem; }
.pricing-toggle-container { display: inline-flex; align-items: center; gap: 1rem; margin-top: 2rem; background: rgba(255,255,255,0.03); padding: 8px 24px; border-radius: 100px; border: 1px solid var(--border-light); }
.toggle-label { font-size: 0.9rem; font-weight: 600; color: #666; transition: 0.3s; cursor: pointer; }
.toggle-label.active-label { color: white; }
.switch-container { position: relative; display: inline-block; width: 56px; height: 30px; }
.switch-container input { opacity: 0; width: 0; height: 0; }
.switch-slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #333; transition: .4s; border-radius: 34px; border: 1px solid #444; }
.switch-slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.3); }
input:checked + .switch-slider { background-color: var(--gold); border-color: var(--gold); }
input:checked + .switch-slider:before { transform: translateX(26px); background-color: black; }
.discount-pill { background: rgba(16, 185, 129, 0.2); color: var(--tech-green); font-size: 0.7rem; padding: 2px 6px; border-radius: 4px; margin-left: 6px; font-weight: 700; }
.blink { animation: blink 3s infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Pricing Grid Fixed */
.pricing-grid { 
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; 
    align-items: stretch; /* Cards same height */
}
.pricing-card { 
    background: var(--glass-card); border: 1px solid var(--border-light); 
    border-radius: 24px; padding: 3rem 2rem; text-align: left; transition: 0.3s; 
    position: relative; 
    display: flex; flex-direction: column; /* Allows pushing button down */
}
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(255,255,255,0.2); }
.pricing-card.popular { border-color: var(--gold); background: linear-gradient(180deg, rgba(212, 175, 55, 0.05), transparent); box-shadow: 0 0 30px rgba(212, 175, 55, 0.05); z-index: 2; transform: scale(1.05); }
.pricing-card.popular:hover { transform: scale(1.08); }
.popular-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--gold); color: black; font-weight: 800; font-size: 0.75rem; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); }

.card-tier { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 1rem; color: white; }
.card-price-wrapper { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.5rem; height: 60px; overflow: hidden; }
.currency { font-size: 1.5rem; color: #666; position: relative; top: -15px; }
.price-animator { width: 120px; }
.amount { font-size: 4rem; font-weight: 800; font-family: var(--font-display); color: white; letter-spacing: -2px; display: inline-block; transition: all 0.4s; filter: blur(0px); transform: translateY(0); opacity: 1; }
.amount.blur-out { filter: blur(10px); transform: translateY(-20px); opacity: 0; }
.amount.blur-in { animation: blurIn 0.4s forwards; }
@keyframes blurIn { from { filter: blur(10px); transform: translateY(20px); opacity: 0; } to { filter: blur(0); transform: translateY(0); opacity: 1; } }
.period { color: #666; font-size: 1rem; }
.card-sub { font-size: 0.9rem; color: #94a3b8; margin-bottom: 1.5rem; min-height: 40px; }
.feature-list { list-style: none; margin-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.5rem; margin-bottom: 2rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: #d1d5db; font-size: 0.9rem; line-height: 1.4; }
.feature-list li i { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.btn-pricing { display: block; width: 100%; padding: 16px; text-align: center; border-radius: 12px; background: rgba(255,255,255,0.05); color: white; text-decoration: none; font-weight: 600; transition: 0.3s; border: 1px solid transparent; }
.btn-pricing:hover { background: white; color: black; }
.btn-pricing.gold-filled { background: var(--gold); color: black; }
.btn-pricing.gold-filled:hover { background: #b5952f; box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
.guarantee-text { margin-top: 2rem; color: #666; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* --- 10. CTA & FOOTER --- */
.cta-glass-box-gold { background: linear-gradient(135deg, #111, #050505); border: 1px solid #333; color: white; border-radius: 32px; padding: 5rem 2rem; text-align: center; max-width: 900px; margin: 0 auto; position: relative; overflow: hidden; box-shadow: 0 20px 80px rgba(0,0,0,0.5); }
.cta-glass-box-gold::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-glass-box-gold h2 { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; }
.cta-glass-box-gold p { color: #94a3b8; margin-bottom: 2.5rem; font-size: 1.1rem; }
.btn-linkedin-xl.gold-style { display: inline-flex; align-items: center; gap: 16px; justify-content: center; background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 16px 32px; border-radius: 16px; text-decoration: none; transition: 0.3s; min-width: 250px; }
.btn-linkedin-xl.gold-style:hover { background: var(--gold); color: black; box-shadow: 0 0 30px rgba(212, 175, 55, 0.3); }
.btn-txt-group { display: flex; flex-direction: column; text-align: left; }
.small-txt { font-size: 0.7rem; text-transform: uppercase; font-weight: 700; letter-spacing: 1px; }
.big-txt { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.sign-count { margin-top: 1.5rem; color: #555; font-size: 0.85rem; }

.estate-footer { border-top: 1px solid #222; background: #080808; padding: 5rem 0 2rem 0; font-size: 0.9rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; padding: 0 2rem; }
.f-logo { height: 28px; filter: brightness(10); opacity: 0.7; margin-bottom: 1rem; }
.footer-brand-col p { color: #666; line-height: 1.6; max-width: 320px; }
.footer-links-col h4 { color: white; margin-bottom: 1.5rem; font-family: var(--font-display); letter-spacing: 1px; }
.footer-links-col a { display: block; color: #666; text-decoration: none; margin-bottom: 0.8rem; transition: 0.3s; }
.footer-links-col a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom { text-align: center; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid #1a1a1a; color: #444; font-size: 0.75rem; }

/* --- 11. SCROLL REVEAL --- */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s forwards; }
.reveal-on-scroll { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { animation-delay: 0.2s; } .delay-2 { animation-delay: 0.4s; } .delay-3 { animation-delay: 0.6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* --- 12. MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-links-center { display: none; }
    .glass-navbar { justify-content: space-between; padding: 0 1rem; }
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1rem; padding: 0 1rem; }
    .origin-story { padding: 2rem; margin: 4rem 0; }
    .story-grid { grid-template-columns: 1fr; gap: 2rem; }
    .bento-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .span-2, .span-1, .row-span-2 { grid-column: span 1; grid-row: auto; }
    .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { order: -1; transform: scale(1.02); margin-bottom: 2rem; }
    .footer-content { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
    .footer-brand-col p { margin: 1rem auto; }
}
/* --- FIX PREZZI --- */
.card-price-wrapper {
    display: flex;
    align-items: flex-start; /* Allinea tutto in alto */
    gap: 4px;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #666;
    margin-top: 10px; /* Spinge giù l'euro per allinearlo otticamente alla cima del numero */
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: white;
    letter-spacing: -3px;
    line-height: 0.9;
}

.period {
    align-self: flex-end; /* Mette "/mo" in basso */
    margin-bottom: 8px;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}
/* --- INTEGRATION SECTION (STRIPE STYLE) --- */
.integration-section { margin-bottom: 10rem; position: relative; }

.stripe-grid-wrapper {
    position: relative;
    width: 100%; max-width: 800px; height: 400px;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
}

/* HUB CENTRALE */
.hub-center-glow {
    width: 100px; height: 100px;
    background: #000;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
    position: relative;
}
.hub-center-glow img { width: 40px; }

/* SVG LINES */
.connection-lines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}
.line-path {
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 2;
    fill: none;
}
.particle { filter: drop-shadow(0 0 5px var(--gold)); }

/* CARDS PERIFERICHE */
.int-card {
    position: absolute;
    width: 160px; padding: 15px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    display: flex; flex-direction: column; align-items: center; text-align: center;
    transition: 0.3s;
    z-index: 5;
}
.int-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.int-icon { color: #fff; margin-bottom: 8px; }
.int-card h4 { font-size: 0.9rem; margin-bottom: 4px; color: white; }
.int-card p { font-size: 0.75rem; color: #888; }

/* Posizionamento carte */
.pos-tl { top: 20px; left: 50px; }    /* Top Left */
.pos-tr { top: 20px; right: 50px; }   /* Top Right */
.pos-bl { bottom: 20px; left: 50px; } /* Bottom Left */
.pos-br { bottom: 20px; right: 50px; }/* Bottom Right */

/* Mobile Responsive Integration */
@media (max-width: 768px) {
    .stripe-grid-wrapper { height: auto; flex-direction: column; gap: 20px; padding: 2rem 0; }
    .connection-lines { display: none; } /* Nascondi linee complesse su mobile */
    .hub-center-glow { margin-bottom: 2rem; }
    .int-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: 80%; }
}
.currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
    margin-top: 34px; /* Spostato più in basso come richiesto */
    position: relative;
    align-self: flex-start;
}
/* --- NEURAL AUTOMATION DEMO --- */
.dashboard-preview.automation-mode {
    flex-direction: row;
    align-items: stretch;
    background: linear-gradient(135deg, #0f0f0f, #050505);
}

.dash-icon { 
    margin-top: 20px; color: #555; width: 40px; height: 40px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 8px; transition: 0.3s;
}
.dash-icon.active { color: var(--gold); background: rgba(212, 175, 55, 0.1); }

/* Flow Container */
.dash-flow-container {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 20px; padding: 40px 20px; position: relative;
}

/* Steps & Cards */
.flow-step { display: flex; flex-direction: column; gap: 10px; align-items: center; z-index: 2; }
.step-label { font-size: 0.6rem; color: #666; letter-spacing: 1px; }

.flow-card {
    width: 180px; height: 220px;
    background: #1a1a1a;
    border: 1px solid #333; border-radius: 12px;
    padding: 15px;
    display: flex; flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}

/* Input Card Styling */
.portal-header { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; margin-bottom: 15px; }
.raw-data-box { opacity: 0.5; }
.data-line { height: 6px; background: #444; margin-bottom: 8px; border-radius: 2px; }
.w-80 { width: 80%; } .w-60 { width: 60%; }
.data-img-placeholder { width: 100%; height: 80px; background: #333; border-radius: 4px; margin-top: 10px; }

/* Output Card Styling (The Ad) */
.output-card { border-color: rgba(212, 175, 55, 0.3); background: linear-gradient(180deg, rgba(212,175,55,0.05), #1a1a1a); }
.social-header { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; margin-bottom: 10px; color: white; }
.ad-preview { border: 1px solid #333; border-radius: 8px; overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.ad-image { height: 80px; background: #222; position: relative; background-size: cover; }
.tag-sponsored { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,0.6); color: white; font-size: 0.5rem; padding: 2px 4px; border-radius: 2px; }
.ad-content { padding: 8px; background: white; flex: 1; }
.ad-content h5 { color: black; font-size: 0.7rem; margin-bottom: 4px; }
.ad-content p { color: #666; font-size: 0.6rem; margin-bottom: 8px; }
.ad-cta { background: #3897f0; color: white; text-align: center; font-size: 0.6rem; padding: 4px; border-radius: 4px; font-weight: 700; }

/* AI Processor (The Middle) */
.flow-arrow-zone { position: relative; width: 100px; display: flex; align-items: center; justify-content: center; }
.connection-line { 
    position: absolute; width: 100%; height: 2px; background: #333; z-index: 0; 
    top: 50%; transform: translateY(-50%);
}
.ai-processor-node {
    width: 50px; height: 50px; background: #000; border: 1px solid var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold); z-index: 5; position: relative;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}
.processing-pulse {
    position: absolute; width: 100%; height: 100%; border-radius: 50%;
    border: 1px solid var(--gold); opacity: 0;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

/* Terminal Bar */
.ai-terminal-bar {
    position: absolute; bottom: 0; left: 60px; right: 0;
    height: 40px; background: #111; border-top: 1px solid #222;
    display: flex; align-items: center; padding: 0 20px; gap: 10px;
    font-size: 0.7rem; color: #4ade80; /* Terminal Green */
    border-bottom-right-radius: 16px;
}
.blink-cursor { animation: blink 1s infinite; }

/* Mobile Dashboard Fix */
@media (max-width: 768px) {
    .dashboard-preview.automation-mode { height: auto; flex-direction: column; }
    .dash-sidebar { display: none; }
    .dash-flow-container { flex-direction: column; padding: 30px; }
    .flow-arrow-zone { width: auto; height: 60px; transform: rotate(90deg); }
    .ai-terminal-bar { left: 0; border-radius: 0 0 16px 16px; position: relative; }
}
/* --- NEURAL HUB (MULTI-TASK MODE) --- */
.dashboard-preview.hub-mode {
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    position: relative;
    height: 500px; /* Più alto per dare spazio */
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}

.hub-grid-bg {
    position: absolute; width: 200%; height: 200%;
    background-image: linear-gradient(#222 1px, transparent 1px), linear-gradient(90deg, #222 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.3;
    animation: rotateGrid 100s linear infinite;
}
@keyframes rotateGrid { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* --- AI CENTER --- */
.ai-hub-center {
    position: relative; width: 100px; height: 100px;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
}
.core-brain {
    width: 60px; height: 60px; background: #000; border: 1px solid var(--gold);
    border-radius: 50%; color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    z-index: 5; box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.core-ring {
    position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.1);
}
.core-ring.inner { width: 140px; height: 140px; animation: spinRight 10s linear infinite; }
.core-ring.outer { width: 220px; height: 220px; animation: spinLeft 15s linear infinite; opacity: 0.5; }

/* --- TASK NODES (SATELLITES) --- */
.task-node {
    position: absolute; width: 200px; padding: 15px;
    background: rgba(20,20,20,0.9); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; display: flex; align-items: center; gap: 12px;
    backdrop-filter: blur(10px); z-index: 10;
    transition: 0.3s;
}

/* Positioning Corners */
.node-tl { top: 60px; left: 60px; }
.node-tr { top: 60px; right: 60px; }
.node-bl { bottom: 80px; left: 60px; }
.node-br { bottom: 80px; right: 60px; }

.node-icon { 
    width: 40px; height: 40px; background: #111; border-radius: 8px; 
    display: flex; align-items: center; justify-content: center; color: #666; 
}
.task-node.active .node-icon { color: var(--gold); background: rgba(212,175,55,0.1); }

.node-content { flex: 1; }
.node-label { font-size: 0.65rem; color: #888; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.node-status { font-size: 0.8rem; color: white; font-family: var(--font-mono); }
.node-status.success { color: var(--tech-green); }

/* Mini Visuals inside Nodes */
.mini-progress .bar { height: 4px; background: #333; width: 100%; border-radius: 2px; overflow: hidden; position: relative; }
.mini-progress .bar::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: var(--gold); transition: width 0.5s; }
.task-node.active .mini-progress .bar::after { width: 100%; }

.doc-icon-preview { font-size: 0.6rem; background: #222; padding: 2px 6px; border-radius: 4px; width: fit-content; margin-top: 4px; border: 1px solid #333; }
.task-node.active .doc-icon-preview { background: var(--gold); color: black; border-color: var(--gold); }


/* --- KINETIC HUB STYLES --- */
.dashboard-preview.hub-mode {
    background: radial-gradient(circle at center, #111 0%, #000 100%);
    position: relative; height: 500px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border: 1px solid #222; border-radius: 20px;
}
.hub-grid-bg {
    position: absolute; width: 200%; height: 200%;
    background-image: linear-gradient(#1a1a1a 1px, transparent 1px), linear-gradient(90deg, #1a1a1a 1px, transparent 1px);
    background-size: 50px 50px; opacity: 0.3;
    animation: rotateGrid 120s linear infinite;
}
@keyframes rotateGrid { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* AI CENTER */
.ai-hub-center { position: relative; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; z-index: 10; }
.core-brain {
    width: 60px; height: 60px; background: #000; border: 1px solid var(--gold); border-radius: 50%;
    color: var(--gold); display: flex; align-items: center; justify-content: center;
    z-index: 5; box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); transition: 0.3s;
}
.core-ring { position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.1); }
.core-ring.inner { width: 140px; height: 140px; animation: spinRight 10s linear infinite; }
.core-ring.outer { width: 220px; height: 220px; animation: spinLeft 20s linear infinite; opacity: 0.5; }
@keyframes spinRight { 100% { transform: rotate(360deg); } }
@keyframes spinLeft { 100% { transform: rotate(-360deg); } }

/* NODES */
.task-node {
    position: absolute; width: 220px; padding: 15px;
    background: rgba(15, 15, 15, 0.9); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; display: flex; align-items: center; gap: 12px;
    backdrop-filter: blur(10px); z-index: 10; transition: 0.3s;
}
.task-node.active {
    border-color: #ffe5a0; /* Oro molto chiaro */
    background: rgba(30, 30, 30, 0.95);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
    z-index: 20; /* Porta in primo piano */
}

/* Positioning */
.node-tl { top: 60px; left: 60px; }
.node-tr { top: 60px; right: 60px; }
.node-bl { bottom: 80px; left: 60px; }
.node-br { bottom: 80px; right: 60px; }

.node-icon { width: 40px; height: 40px; background: #1a1a1a; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #555; transition: 0.3s; }
.task-node.active .node-icon { color: var(--gold); background: rgba(212,175,55,0.1); }

.node-content { flex: 1; overflow: hidden; }
.node-label { font-size: 0.65rem; color: #888; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 4px; }
.node-status { font-size: 0.85rem; color: white; font-family: var(--font-mono); margin-bottom: 6px; }
.node-status.success { color: var(--tech-green); }

/* --- BEAMS (Laser Connections) --- */
.connection-beam {
    position: absolute; top: 50%; left: 50%; width: 0; height: 2px;
    background: var(--gold); transform-origin: left center;
    filter: drop-shadow(0 0 8px var(--gold)); /* Aggiunge glow al raggio */
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    box-shadow: 0 0 15px var(--gold); opacity: 0; z-index: 1;
}
/* Angoli approssimativi verso i 4 angoli */
.beam-tl { transform: rotate(225deg); }
.beam-tr { transform: rotate(315deg); }
.beam-bl { transform: rotate(135deg); }
.beam-br { transform: rotate(45deg); }
.beam-active { width: 260px; opacity: 1; transition: width 0.4s ease-out; }

/* --- INTERNAL NODE ANIMATIONS (THE "WORKING" PART) --- */

/* 1. Progress Bar (Form) */
.process-bar-container { width: 100%; height: 4px; background: #333; border-radius: 2px; overflow: hidden; }
.process-bar-fill { width: 0%; height: 100%; background: var(--gold); transition: width 0.1s linear; }

/* 2. Equalizer (Data) */
.live-graph { display: flex; align-items: flex-end; gap: 3px; height: 20px; opacity: 0.3; }
.live-graph .bar { width: 6px; background: var(--gold); border-radius: 2px; animation: none; }
.task-node.active .live-graph { opacity: 1; }
.task-node.active .live-graph .bar { animation: bounceGraph 0.5s infinite alternate; }
.b1 { height: 40%; animation-delay: 0s; } .b2 { height: 70%; animation-delay: 0.1s; } 
.b3 { height: 50%; animation-delay: 0.2s; } .b4 { height: 90%; animation-delay: 0.3s; }
@keyframes bounceGraph { 0% { height: 20%; } 100% { height: 100%; } }

/* 3. Doc Scanner (Contracts) */
.doc-scanner { font-size: 0.6rem; color: #666; position: relative; overflow: hidden; padding: 2px 0; }
.scan-line-x { position: absolute; left: 0; top: 0; height: 100%; width: 2px; background: var(--gold); box-shadow: 0 0 5px var(--gold); transform: translateX(-10px); }
.task-node.active .scan-line-x { animation: scanX 1s infinite linear; }
.task-node.active .doc-type { color: white; }
@keyframes scanX { 0% { transform: translateX(0); } 100% { transform: translateX(150px); } }

/* 4. Typing Dots (Email) */
.typing-indicator { display: flex; gap: 4px; opacity: 0.3; }
.typing-indicator span { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }
.task-node.active .typing-indicator { opacity: 1; }
.task-node.active .typing-indicator span { animation: typeBounce 1s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; } .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typeBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }

/* Mobile */
@media (max-width: 900px) {
    .dashboard-preview.hub-mode { height: auto; flex-direction: column; padding: 40px 20px; gap: 15px; }
    .task-node { position: relative; top: auto; left: auto; right: auto; bottom: auto; width: 100%; }
    .ai-hub-center { order: -1; margin-bottom: 20px; }
    .connection-beam { display: none; }
}
#ai-log-text {
    text-shadow: 0 0 5px rgba(74, 222, 128, 0.5);
}
/* =========================================
   FIX GEOMETRIA RAGGI INFERIORI
   ========================================= */

/* 1. MARKET VALUATION (Basso Sinistra) 
   Angolo modificato da 135deg a 142deg per centrare meglio il nodo.
*/
.beam-bl { 
    transform: rotate(142deg); 
}
/* Quando attivo, lo rendiamo più corto (210px invece di 260px) */
.beam-bl.beam-active {
    width: 210px !important; 
}


/* 2. CLIENT OUTREACH (Basso Destra) 
   Angolo modificato da 45deg a 38deg per centrare meglio il nodo.
*/
.beam-br { 
    transform: rotate(38deg); 
}
/* Quando attivo, lo rendiamo più corto (210px invece di 260px) */
.beam-br.beam-active {
    width: 210px !important; 
}
/* --- GLOBAL UPGRADES (Incolla in fondo al CSS) --- */

/* 1. Custom Scrollbar (Stile Cyberpunk) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; border: 1px solid #000; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* 2. Text Selection (Oro) */
::selection { background: rgba(212, 175, 55, 0.3); color: white; }

/* 3. Better Glassmorphism (Più profondo) */
.glass-navbar, .bento-card, .pricing-card, .cta-glass-box-gold {
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%); /* Safari */
    background: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* 4. Button Glow Upgrade */
.gold-btn, .btn-pricing.gold-filled {
    position: relative; overflow: hidden;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.gold-btn:hover, .btn-pricing.gold-filled:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
}
/* Effetto riflesso sul bottone */
.gold-btn::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}
.gold-btn:hover::after { left: 100%; }

/* 5. Typography Boost */
body { letter-spacing: -0.01em; } /* Tight tracking like Stripe */
h1, h2, h3 { letter-spacing: -0.03em; }
p { line-height: 1.7; color: #a1a1aa; }
/* --- NEW PRO FOOTER STYLES --- */

.estate-footer-pro {
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 6rem 0 2rem 0;
    margin-top: 8rem;
    font-size: 0.9rem;
    position: relative;
}
/* Effetto luce sopra il footer */
.estate-footer-pro::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px; background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    box-shadow: 0 -10px 30px rgba(212, 175, 55, 0.2);
}

.footer-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem;
    margin-bottom: 4rem;
}

.f-logo-pro { height: 24px; filter: brightness(10); opacity: 0.8; margin-bottom: 1.5rem; }
.brand-col p { font-size: 0.9rem; color: #666; max-width: 300px; margin-bottom: 1.5rem; }

.f-title { color: white; font-family: var(--font-display); font-size: 1rem; margin-bottom: 1.5rem; letter-spacing: 0.5px; }
.f-link { 
    display: block; color: #888; text-decoration: none; margin-bottom: 0.8rem; transition: 0.2s; 
    font-size: 0.9rem; display: flex; align-items: center; gap: 8px;
}
.f-link:hover { color: var(--gold); transform: translateX(5px); }

.hiring-badge { 
    font-size: 0.6rem; background: rgba(16, 185, 129, 0.15); color: #10b981; 
    padding: 2px 6px; border-radius: 4px; border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Newsletter Input */
.f-input-group { 
    display: flex; gap: 8px; margin-top: 1rem; margin-bottom: 1.5rem; 
}
.f-input {
    background: rgba(255,255,255,0.05); border: 1px solid #333; color: white;
    padding: 10px 14px; border-radius: 8px; width: 100%; outline: none; transition: 0.3s;
    font-family: var(--font-body);
}
.f-input:focus { border-color: var(--gold); background: rgba(0,0,0,0.5); }
.f-submit {
    background: var(--gold); border: none; border-radius: 8px; width: 42px; 
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: 0.3s;
}
.f-submit:hover { background: white; }

/* System Status */
.system-status {
    display: flex; align-items: center; gap: 8px; color: #555; font-size: 0.75rem; 
    font-family: var(--font-mono); border: 1px solid #222; padding: 8px 12px; 
    border-radius: 100px; width: fit-content; background: #080808;
}
.status-dot { width: 6px; height: 6px; background: #10b981; border-radius: 50%; box-shadow: 0 0 5px #10b981; }

/* Social Icons */
.social-row { display: flex; gap: 15px; }
.social-icon { color: #555; transition: 0.3s; }
.social-icon:hover { color: white; transform: translateY(-2px); }
.social-icon i { width: 20px; }

/* Bottom Bar */
.footer-bottom-pro {
    max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 0 2rem;
    border-top: 1px solid #1a1a1a;
    display: flex; justify-content: space-between; align-items: center;
    color: #444; font-size: 0.8rem;
}
.fb-left { display: flex; gap: 20px; }
.fb-left a { color: #444; text-decoration: none; transition: 0.2s; }
.fb-left a:hover { color: #888; }

/* Mobile Footer */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; text-align: left; }
    .f-input-group { max-width: 300px; }
    .footer-bottom-pro { flex-direction: column; gap: 1rem; text-align: center; }
}
/* --- WAITLIST MODAL STYLES --- */
.modal-backdrop {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: 0.3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal-glass-card {
    background: #111; border: 1px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    padding: 3rem; border-radius: 24px; text-align: center;
    max-width: 450px; width: 90%; position: relative;
    transform: translateY(20px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-backdrop.open .modal-glass-card { transform: translateY(0); }

.modal-close {
    position: absolute; top: 15px; right: 15px; background: transparent;
    border: none; color: #666; cursor: pointer; transition: 0.2s;
}
.modal-close:hover { color: white; }

.modal-icon {
    width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1);
    color: var(--gold); border-radius: 50%; margin: 0 auto 1.5rem auto;
    display: flex; align-items: center; justify-content: center;
}
.modal-glass-card h3 { color: white; font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1rem; }
.modal-glass-card p { color: #888; font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem; }

.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input {
    background: #050505; border: 1px solid #333; padding: 14px; border-radius: 12px;
    color: white; font-family: var(--font-body); outline: none; text-align: center;
}
.modal-form input:focus { border-color: var(--gold); }

.modal-submit-btn {
    background: var(--gold); color: black; font-weight: 700; padding: 14px;
    border-radius: 12px; border: none; cursor: pointer; transition: 0.3s;
}
.modal-submit-btn:hover { background: #b5952f; transform: translateY(-2px); }

.modal-micro { font-size: 0.75rem; color: #555; margin-top: 1rem; margin-bottom: 0 !important; }