.free-badge {
    display: inline-block;
    background: var(--highlight);
    color: var(--seasalt);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 1rem 0;
}

.ph-newsletter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: #da552f;
    color: #ffffff;
    border: 1px solid #da552f;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.5rem;
    margin-top: 0;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(218, 85, 47, 0.2);
    width: fit-content;
}

.ph-newsletter-badge svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.ph-newsletter-badge:hover {
    background: #c5431e;
    color: #ffffff;
    border-color: #c5431e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(218, 85, 47, 0.3);
}

.ph-newsletter-badge:hover svg {
    transform: scale(1.1) rotate(-10deg);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.8;
}

.section-highlight {
    padding: 5rem 0;
}

.plus-badge-large {
    display: inline-block;
    background: var(--highlight);
    color: var(--seasalt);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.coupon-highlight {
    background: var(--seasalt);
    border: 3px solid var(--highlight);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.coupon-label {
    color: var(--outer-space);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.coupon-code {
    background: var(--antiflash-white);
    color: var(--highlight);
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    margin: 1.2rem 0 2rem;
    border: 2px dashed var(--highlight);
    letter-spacing: 3px;
    display: inline-block;
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.privacy-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--seasalt);
    border-radius: 12px;
    border: 1px solid var(--platinum);
    transition: all 0.3s ease;
}

.privacy-box:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary-color);
}

.privacy-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.privacy-box h4 {
    color: var(--ark-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.privacy-box p {
    color: var(--outer-space);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cta-box {
    background: var(--seasalt);
    padding: 4.5rem 4rem;
    border-radius: 20px;
    border: 2px solid var(--bs-primary-color);
    text-align: center;
}

.cta-box h2 {
    font-size: 2.8rem;
    color: var(--ark-primary);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--outer-space);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-note {
    color: var(--slate-gray);
    font-size: 0.95rem;
}

.cta-note strong {
    color: var(--highlight);
    font-weight: 700;
}

/* Fix the grid layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.project-card-full {
    grid-column: 1 / -1;
}

.linux-note {
    background: var(--seasalt);
    border-left: 4px solid var(--ark-primary);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.linux-note h3 {
    color: var(--ark-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.linux-note p {
    color: var(--outer-space);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.linux-note pre {
    background: var(--antiflash-white);
    border: 1px solid var(--platinum);
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: var(--eerie-black);
    margin: 0.8rem 0 1.5rem;
}

.linux-note strong {
    color: var(--bs-primary-color);
    font-weight: 600;
}

/* Responsive fixes */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .privacy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text .tagline {
        max-width: 100%;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .coupon-highlight {
        padding: 2rem;
    }
    
    .coupon-code {
        font-size: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .cta-box {
        padding: 3rem 2rem;
    }
    
    .cta-box h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-text .subtitle {
        font-size: 1.3rem;
    }
    
    .section-intro h2 {
        font-size: 1.8rem;
    }
    
    .coupon-code {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
}