/* === GTP Home Template === */

/* Hero */
.gtp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.gtp-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gtp-primary);
    opacity: 0.7;
    mix-blend-mode: multiply;
}
.gtp-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
}
.gtp-hero__content h1 {
    font-size: var(--gtp-font-size-h1, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}
.gtp-hero__subtitle {
    font-size: var(--gtp-font-size-base, 20px);
    color: #ffffff;
    margin-bottom: 8px;
}
.gtp-hero__text {
    font-size: var(--gtp-font-size-base, 20px);
    color: var(--gtp-muted, #93c5e8);
    margin-bottom: 32px;
}
.gtp-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--gtp-primary);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    font-size: var(--gtp-font-size-base, 20px);
    transition: opacity 0.2s;
}
.gtp-btn:hover { opacity: 0.9; }

/* Sezioni */
.gtp-section {
    padding: 80px 40px;
}
.gtp-section--white   { background: var(--gtp-bg, #ffffff); }
.gtp-section--alt     { background: var(--gtp-bg-alt, #f8f8f8); }
.gtp-section--primary { background: var(--gtp-primary); }
.gtp-section--light   { background: var(--gtp-light, #e8f2fa); }

/* Sezione primary: testi chiari */
.gtp-section--primary h2,
.gtp-section--primary p { color: #ffffff; }
.gtp-section--primary .gtp-terminal-list {
    font-weight: 600;
    margin-top: 32px;
    color: #ffffff;
}

/* Container */
.gtp-container {
    max-width: 1200px;
    margin: 0 auto;
}
.gtp-container--narrow {
    max-width: 900px;
    margin: 0 auto;
}

/* Colonne */
.gtp-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 768px) {
    .gtp-columns { grid-template-columns: 1fr; }
    .gtp-section { padding: 60px 20px; }
}

/* Box info */
.gtp-box {
    background: var(--gtp-light, #e8f2fa);
    border-radius: 8px;
    padding: 32px;
}
.gtp-box h3 { color: var(--gtp-primary); margin-bottom: 16px; }
.gtp-box ul { padding-left: 20px; }
.gtp-box li { margin-bottom: 8px; }

/* Cards sicurezza */
.gtp-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .gtp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gtp-cards { grid-template-columns: 1fr; }
}
.gtp-card {
    background: var(--gtp-bg, #ffffff);
    border-radius: 8px;
    padding: 24px;
}
.gtp-card h4 { color: var(--gtp-primary); margin-bottom: 8px; }

/* FAQ */
.gtp-faq { margin-top: 32px; }
.gtp-faq__item {
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8;
}
.gtp-faq__item:last-child { border-bottom: none; }
.gtp-faq__item h4 { color: var(--gtp-primary); margin-bottom: 8px; }

/* Contatti */
.gtp-email {
    color: var(--gtp-primary);
    font-weight: 600;
    font-size: var(--gtp-font-size-base, 20px);
    text-decoration: none;
}
.gtp-email:hover { text-decoration: underline; }

/* Tipografia sezioni */
.gtp-section h2 { color: var(--gtp-primary); margin-bottom: 16px; }
.gtp-section p  { color: var(--gtp-text, #333); line-height: var(--gtp-line-height, 1.8); }
.gtp-text-center { text-align: center; }
.gtp-text-muted  { color: var(--gtp-text-muted, #666) !important; }

/* Icone sezioni */
.gtp-section-icon { text-align: center; margin-bottom: 16px; }
.gtp-section-icon i { font-size: 64px; color: var(--gtp-primary); }
.gtp-section-icon--light i { color: #ffffff; }
