/*!
 * DOS518 - IRTILAC S.r.l.
 * Sito Ibrido - CSS Completo
 * Versione: 2.0
 */

@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');

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

html {
    background: #101010;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #171717;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: #bc3908; border-radius: 4px; }
::-webkit-scrollbar-track { background: #101010; }

/* SPLASH SCREEN */
#loader {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    font-family: 'Poppins', sans-serif;
    background-color: #101010;
    color: whitesmoke;
    font-size: 50px;
    width: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    #loader { font-size: 30px; }
}

.color { color: #bc3908; }

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: none;
}

.navbar.visible { display: block; }

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

.navbar .logo img {
    height: 50px;
    width: auto;
    border-radius: 50%;
}

.navbar .highlight { color: #bc3908; }

.navbar .nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar .nav-menu li { list-style: none; }

.navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.3s;
    padding: 8px 0;
}

.navbar .nav-menu a:hover,
.navbar .nav-menu a.active { color: #bc3908; }

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
}

@media (max-width: 900px) {
    .mobile-menu-toggle { display: block; }
    
    .navbar .nav-menu {
        position: fixed;
        top: 74px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 74px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        transition: left 0.3s ease;
        gap: 10px;
    }
    
    .navbar .nav-menu.active { left: 0; }
    .navbar .nav-menu a { font-size: 1.2em; padding: 15px; }
}

/* HERO */
#header {
    background: #171717;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/* ICONE CONTATTO - SINISTRA */
.social-media-links {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.social-media-links .contactpic {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-media-links .contactpic:hover {
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-media-links { left: 15px; }
    .social-media-links .contactpic { width: 25px; height: 25px; }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}

.header-content-box {
    text-align: center;
    padding: 20px;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.hero-logo-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 3px solid #bc3908;
    object-fit: cover;
    box-shadow: 0 10px 40px rgba(188, 57, 8, 0.4);
    transition: transform 0.3s ease;
}

.hero-logo-image:hover { transform: scale(1.05); }

@media (max-width: 768px) {
    .hero-logo-image { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
    .hero-logo-image { width: 150px; height: 150px; }
}

.firstline {
    font-size: 55px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.secondline {
    font-size: 24px;
    padding-top: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.slash { animation: blink 0.8s infinite; }

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

@media (max-width: 768px) {
    .firstline { font-size: 35px; }
    .secondline { font-size: 18px; }
}

@media (max-width: 480px) {
    .firstline { font-size: 28px; }
    .secondline { font-size: 16px; }
}

/* ABOUT */
#about {
    background: #101010;
    width: 100%;
    padding: 80px 0;
}

#about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-header {
    text-align: center;
    font-size: 45px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    padding-bottom: 30px;
}

.header-caption {
    display: block;
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 10px;
}

.about-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-first-paragraph {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.about-first-line {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.about-first-line .color { font-size: 32px; }

.about-second-line {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    display: block;
    margin-top: 15px;
}

.about-img {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cv { margin-top: 30px; }

.cv button {
    background: #bc3908;
    border: none;
    padding: 15px 35px;
    color: #fff;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cv button:hover {
    background: #a03007;
    transform: scale(1.05);
}

.cv a { text-decoration: none; }

/* PORTFOLIO / MODULI */
#portfolio {
    background: #171717;
    padding: 80px 0;
}

#portfolio-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 60px;
}

.portfolio-header span:first-child {
    font-size: 45px;
    font-weight: 900;
    font-family: 'Raleway', sans-serif;
    display: block;
}

.portfolio-split {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.portfolio-split.reverse { flex-direction: row-reverse; }

.portfolio-split-image {
    flex: 1;
    min-width: 300px;
}

.portfolio-split-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.portfolio-split-image img:hover { transform: scale(1.02); }

.portfolio-split-content {
    flex: 1;
    min-width: 300px;
}

.portfolio-split-content h2 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #fff;
}

.comparison-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    border-left: 4px solid #666;
}

.comparison-box.before {
    background: rgba(255, 0, 0, 0.08);
    border-left-color: #dc3545;
}

.comparison-box.after {
    background: rgba(0, 255, 0, 0.08);
    border-left-color: #28a745;
}

.comparison-box strong {
    display: block;
    font-size: 1em;
    margin-bottom: 12px;
}

.comparison-box.before strong { color: #ff6b6b; }
.comparison-box.after strong { color: #51cf66; }

.comparison-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-box ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95em;
    color: #ccc;
}

.comparison-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
}

.comparison-box.before ul li::before { color: #ff6b6b; }
.comparison-box.after ul li::before { color: #51cf66; }

.result-box {
    background: linear-gradient(135deg, #bc3908, #ff6b35);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    color: #fff;
}

@media (max-width: 900px) {
    .portfolio-split,
    .portfolio-split.reverse { flex-direction: column; }
    .portfolio-split-content h2 { font-size: 1.5em; }
}

/* MODULES CARDS - Cards compatte con PRIMA/DOPO */
.modules-cards-header {
    text-align: center;
    font-size: 38px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    margin: 80px 0 50px 0;
}

.modules-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.module-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(188, 57, 8, 0.2);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    border-color: #bc3908;
    box-shadow: 0 15px 40px rgba(188, 57, 8, 0.15);
}

.module-card-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.module-card h3 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 20px;
    font-weight: 600;
}

.module-card-comparison {
    margin-bottom: 20px;
}

.mini-before,
.mini-after {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 10px;
}

.mini-before {
    background: rgba(255, 0, 0, 0.08);
    border-left: 3px solid #dc3545;
    color: #ccc;
}

.mini-before strong {
    color: #ff6b6b;
}

.mini-after {
    background: rgba(0, 255, 0, 0.08);
    border-left: 3px solid #28a745;
    color: #ccc;
}

.mini-after strong {
    color: #51cf66;
}

.module-card-result {
    background: linear-gradient(135deg, #bc3908, #ff6b35);
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95em;
    text-align: center;
}

@media (max-width: 1024px) {
    .modules-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .modules-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-cards-header {
        font-size: 30px;
    }
}

/* SKILLS / VANTAGGI */
#skills {
    background: #101010;
    padding: 80px 0;
}

.skills-header {
    text-align: center;
    font-size: 45px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
}

.skills-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.skill-html { margin-bottom: 25px; }

.skill-text { margin-bottom: 10px; }

.skill-text .html { font-size: 16px; color: #fff; }

.html-prog {
    width: 100%;
    height: 35px;
    background: #1a1a1a;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.html-progress,
.js-progress,
.adobe-progress,
.php-progress,
.jquery-progress,
.seo-progress {
    position: absolute;
    top: 4px;
    left: 4px;
    height: calc(100% - 8px);
    background: #bc3908;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: width 1s ease;
}

.html-progress { width: 93%; }
.js-progress { width: 100%; }
.adobe-progress { width: 100%; }
.php-progress { width: 100%; }
.jquery-progress { width: 100%; }
.seo-progress { width: 98%; }

/* SEZIONI STATICHE */
.section-static {
    background: #171717;
    padding: 80px 0;
}

.section-static:nth-child(even) { background: #101010; }

.section-static .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-size: 40px;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #999;
    font-size: 1.1em;
    margin-bottom: 50px;
}

/* TECH GRID */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.tech-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(188, 57, 8, 0.2);
    transition: all 0.3s ease;
}

.tech-category:hover {
    transform: translateY(-5px);
    border-color: #bc3908;
}

.tech-category h3 {
    color: #bc3908;
    margin-bottom: 18px;
    font-size: 1.1em;
}

.tech-list {
    list-style: none;
    padding: 0;
}

.tech-list li {
    padding: 8px 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
}

.tech-list i {
    color: #bc3908;
    width: 20px;
}

@media (max-width: 1024px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.tech-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.tech-stat { text-align: center; }

.tech-stat .stat-number {
    font-size: 2.2em;
    font-weight: 700;
    color: #bc3908;
}

.tech-stat .stat-label {
    color: #999;
    margin-top: 5px;
    font-size: 0.95em;
}

/* DEMO */
.demo-video {
    max-width: 700px;
    margin: 0 auto 40px;
}

.video-placeholder {
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(188, 57, 8, 0.4);
    border-radius: 15px;
    padding: 60px;
    text-align: center;
    color: #999;
}

.video-placeholder i {
    color: #bc3908;
    margin-bottom: 15px;
}

.demo-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 700px;
    margin: 0 auto;
}

.check-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 15px;
    border-radius: 8px;
    color: #ccc;
    font-size: 0.95em;
}

.check-item i {
    color: #28a745;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .demo-checklist { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .demo-checklist { grid-template-columns: 1fr; }
}

/* TESTIMONIAL */
.testimonial-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(188, 57, 8, 0.1), rgba(188, 57, 8, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(188, 57, 8, 0.3);
    position: relative;
}

.testimonial-icon {
    font-size: 3em;
    color: #bc3908;
    margin-bottom: 25px;
    opacity: 0.6;
}

.testimonial-quote {
    font-size: 1.8em;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 30px 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #bc3908;
    box-shadow: 0 5px 20px rgba(188, 57, 8, 0.3);
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: #bc3908;
    font-size: 1.2em;
    margin-bottom: 5px;
}

.author-info span {
    color: #999;
    font-size: 0.95em;
}

@media (max-width: 768px) {
    .testimonial-quote {
        font-size: 1.4em;
    }
    
    .testimonial-box {
        padding: 40px 25px;
    }
}

/* PRICING */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 950px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: #bc3908;
}

.pricing-card.featured {
    border-color: #bc3908;
    background: rgba(188, 57, 8, 0.1);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #bc3908;
    color: #fff;
    padding: 5px 18px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: 600;
}

.pricing-card h3 {
    color: #fff;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.pricing-card .price { margin-bottom: 25px; }

.pricing-card .currency {
    font-size: 1.3em;
    color: #bc3908;
    vertical-align: top;
}

.pricing-card .amount {
    font-size: 2.5em;
    font-weight: 700;
    color: #fff;
}

.pricing-card .period { color: #999; }

.pricing-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.pricing-card .features-list li {
    padding: 10px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95em;
}

.pricing-card .features-list i {
    color: #28a745;
    margin-right: 10px;
}

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

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.btn-primary {
    background: #bc3908;
    color: #fff;
}

.btn-primary:hover {
    background: #a03007;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #bc3908;
    border: 2px solid #bc3908;
}

.btn-outline:hover {
    background: #bc3908;
    color: #fff;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* CONTACT */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 950px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #bc3908;
    font-size: 1.4em;
    margin-bottom: 8px;
}

.contact-info > p {
    color: #999;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item i {
    color: #bc3908;
    font-size: 1.1em;
    margin-top: 3px;
    width: 20px;
}

.contact-item strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

.contact-item p {
    color: #ccc;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95em;
}

.contact-item a {
    color: #bc3908;
    text-decoration: none;
}

.contact-item a:hover { text-decoration: underline; }

.contact-form {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 15px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
    display: block;
    color: #ccc;
    margin-bottom: 6px;
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #bc3908;
}

.form-group select { cursor: pointer; }
.form-group select option { background: #1a1a1a; }

@media (max-width: 768px) {
    .contact-content { grid-template-columns: 1fr; }
}

/* FOOTER */
.footer {
    background: #0a0a0a;
    padding: 50px 0 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

.footer-section h4 {
    color: #bc3908;
    margin-bottom: 15px;
    font-size: 1em;
}

.footer-section p {
    color: #999;
    line-height: 1.7;
    font-size: 0.9em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li { margin-bottom: 8px; }

.footer-section ul a {
    color: #999;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
}

.footer-section ul a:hover { color: #bc3908; }

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.85em;
}

.footer-bottom p { margin: 5px 0; }

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

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

/* ============================================
   PAGINE SECONDARIE (chi-siamo, privacy, termini, grazie)
   ============================================ */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #101010 100%);
    padding: 140px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(188, 57, 8, 0.3);
}

.page-header h1 {
    font-size: 3em;
    font-family: 'Raleway', sans-serif;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2em;
    color: #999;
}

/* Content Section */
.content-section {
    background: #171717;
    padding: 80px 0;
}

.content-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

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

.content-main h2 {
    font-size: 2em;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 20px;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 1.4em;
    color: #bc3908;
    margin: 35px 0 15px;
}

.content-main p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-main em {
    color: #999;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #bc3908;
    margin-top: 3px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(188, 57, 8, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #bc3908;
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5em;
    color: #bc3908;
    margin-bottom: 20px;
}

.value-card h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.value-card p {
    color: #999;
    font-size: 0.95em;
    line-height: 1.6;
    margin: 0;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-box h4 {
    color: #bc3908;
    font-size: 1.1em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.simple-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-list li {
    padding: 8px 0;
    color: #ccc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95em;
}

.simple-list li:last-child {
    border-bottom: none;
}

.cta-box {
    background: linear-gradient(135deg, rgba(188, 57, 8, 0.2), rgba(188, 57, 8, 0.1));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #bc3908;
    text-align: center;
}

.cta-box h4 {
    color: #fff;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.cta-box p {
    color: #ccc;
    margin-bottom: 20px;
}

/* Thank You Page */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101010;
    padding: 120px 40px 80px;
}

.thank-you-box {
    max-width: 600px;
    text-align: center;
    padding: 60px 40px;
    background: #1a1a1a;
    border-radius: 20px;
    border: 2px solid #bc3908;
}

.thank-you-icon {
    font-size: 5em;
    color: #28a745;
    margin-bottom: 30px;
    animation: checkmark 0.6s ease;
}

@keyframes checkmark {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.thank-you-box h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #bc3908;
    font-family: 'Raleway', sans-serif;
}

.thank-you-box > p {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ccc;
}

.thank-you-box .info-box {
    text-align: left;
    margin: 30px 0;
}

.thank-you-box .info-box h3 {
    color: #bc3908;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.thank-you-box .info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.thank-you-box .info-box li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
}

.thank-you-box .info-box li i {
    color: #28a745;
}

.btn-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #101010;
}

/* Navbar per pagine secondarie - sempre visibile */
.navbar.static {
    display: block;
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
}
