/* =========================================================
   STYLE SPECIFICO: RT Contact Form Telegram - Product Page
   ========================================================= */

/* --- Hero Section --- */
.product-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 6rem;
}

.product-hero h1 {
    font-size: 3.5rem;
    border: none;
    margin-bottom: 0.5rem;
}

.product-hero .tagline {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    color: var(--tech-cyan);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px var(--tech-cyan-dim);
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: var(--base-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--tech-purple-dim);
    border-color: var(--tech-purple);
}

.feature-box h3 {
    color: var(--tech-cyan);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Utilities per i bordi delle card */
.border-magenta { border-color: rgba(187, 0, 255, 0.3); }
.feature-box.border-magenta:hover { border-color: var(--tech-orange); } /* Nel tuo base css --tech-orange è #bb00ff */

.border-orange { border-color: rgba(255, 159, 28, 0.3); }
.feature-box.border-orange:hover { border-color: #ff9f1c; }

.border-cyan { border-left-color: var(--tech-cyan) !important; }

/* --- Showcase / Architecture --- */
.showcase-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-text {
    flex: 1;
}

.showcase-media {
    flex: 1;
    max-width: 450px;
}

.tech-title {
    margin-top: 0;
    color: var(--tech-cyan);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}


/* --- Demo & Guide Grid --- */
.demoandguide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demoandguide-box {
    background: var(--base-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    text-align: center;
}

.demoandguide-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--tech-purple-dim);
    border-color: var(--tech-purple);
}

.demoandguide-box h3 {
    color: var(--tech-cyan);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Utilities per i bordi delle card */
.demoandguide.border-magenta:hover { border-color: var(--tech-orange); } /* Nel tuo base css --tech-orange è #bb00ff */

.demoandguide-box.border-orange:hover { border-color: #ff9f1c; }


/* Alert Boxes (Recuperati dalla logica "Aether" della guida) */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    margin: 1.5rem 0;
    border-left: 4px solid transparent;
    font-size: 0.95rem;
    background-color: var(--base-panel);
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
    color: var(--text-muted);
}

.alert strong { color: var(--text-main); display: block; margin-bottom: 0.3rem;}

.alert-info {
    border-left-color: var(--tech-cyan);
    border-top: 1px solid var(--tech-cyan-dim);
    border-right: 1px solid var(--tech-cyan-dim);
    border-bottom: 1px solid var(--tech-cyan-dim);
}

.alert-fix {
    border-left-color: #00ff66;
    border-top: 1px solid rgba(0, 255, 102, 0.15);
    border-right: 1px solid rgba(0, 255, 102, 0.15);
    border-bottom: 1px solid rgba(0, 255, 102, 0.15);
}

/* Mockup Style */
.image-container {
    margin: 0;
    padding: 5px;
    background: linear-gradient(135deg, var(--tech-purple-dim), var(--tech-cyan-dim));
    border-radius: 12px;
}

.cornice-ombra {
    display: block;
    border-radius: 8px;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.mockup-box {
    background: var(--base-panel);
    padding: 4rem 2rem;
    text-align: center;
    border: 1px dashed var(--tech-cyan);
}

.mockup-label {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    color: var(--tech-cyan);
    display: block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.mockup-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Security Cards --- */
.rt-property-card {
    background: var(--base-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--tech-purple); /* Fallback */
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
}

.rt-property-card p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rt-property-card strong {
    color: var(--text-main);
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 0.3rem;
}

/* --- Pricing Card --- */
.pricing-card {
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(145deg, var(--base-panel), var(--base-deep));
    border: 2px solid var(--tech-orange); /* Usa il Magenta/Purple definito in style.css */
    border-radius: 12px;
    padding: 3.5rem 2rem;
    box-shadow: 0 0 30px var(--tech-orange-dim);
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    color: var(--text-main);
}

.pricing-subtitle {
    color: var(--tech-orange);
    font-family: monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-price {
    font-family: 'Orbitron', 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin: 1.5rem 0;
    text-shadow: 0 0 15px rgba(255,255,255,0.2);
}

.pricing-price span {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-family: 'Segoe UI', sans-serif;
    text-shadow: none;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-muted);
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff66;
    font-weight: bold;
}

/* --- Responsive specific --- */
@media (max-width: 768px) {
    .product-hero h1 { font-size: 2.5rem; }
    .showcase-container { flex-direction: column; gap: 2rem; }
    .hero-buttons { flex-direction: column; gap: 1rem; }
}

        .disclaimer a {
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding-top: 2.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .btn {
            margin-top: 5px;
        }

        /* Stile per l'immagine del telefono nella sezione Showcase */
        .mockup-img {
            max-width: 100%;       /* Impedisce all'immagine di sforare la larghezza del contenitore */
            height: auto;          /* Mantiene le proporzioni corrette senza deformare l'immagine */
            display: block;        /* Rimuove i margini fantasma sotto le immagini */
            margin: 0 auto;        /* Centra l'immagine orizzontalmente nel box */
            border-radius: 8px;    /* Opzionale: arrotonda leggermente gli angoli per uniformità col design */
        }
        
        .centered-paragraph {
            text-align: center;
            margin-top: 2rem;
            margin-bottom: 2rem;
        }
