/* =========================================
   Base Styles for TagRigger
========================================= */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background-color: #121212;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 40px 0 20px;
}

h1, h2, h3 {
    color: #ffffff;
    margin-top: 0;
}

h1 a {
    color: #ffffff;
    text-decoration: none;
}

.subtitle {
    color: #a0a0a0;
    margin-top: 0;
}

/* Links */
a {
    color: #634EFF;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #7b68ee;
}

/* =========================================
   Standard Content Pages (Privacy, Contact)
========================================= */

.content {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin-bottom: 40px;
}

.contact-box {
    background: #2a2a2a;
    border-left: 4px solid #634EFF;
    padding: 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.contact-box p {
    margin: 5px 0;
}

.email-link {
    font-size: 1.2em;
    font-weight: bold;
}

/* =========================================
   Pricing Section (Main Page)
========================================= */

.container {
    width: 100%;
}

.pricing {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin: 40px 0;
}

.card {
    flex: 1;
    background: #1e1e1e;
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.card .price {
    font-size: 2.5em;
    font-weight: bold;
    color: #ffffff;
    margin: 15px 0;
}

.card p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

/* Feature List with custom checkmarks */
.features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 35px;
    flex-grow: 1;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
    color: #d0d0d0;
}

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

.features li::before {
    content: "✓ ";
    color: #634EFF;
    font-weight: bold;
    margin-right: 8px;
}

/* =========================================
   FAQ Section
========================================= */

.faq-section {
    background: #1e1e1e;
    padding: 35px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin: 0 auto 40px auto;
    max-width: 800px;
    text-align: left;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffffff;
}

.faq-item {
    margin-bottom: 20px;
    border-left: 3px solid #634EFF;
    padding-left: 15px;
}

.faq-item h4 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.faq-item p {
    color: #a0a0a0;
    margin: 0;
}

/* =========================================
   Buttons
========================================= */

.btn {
    display: block;
    background: #634EFF;
    color: #ffffff;
    padding: 14px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid #634EFF;
    margin-top: auto;
}

.btn:hover {
    background: #7b68ee;
    border-color: #7b68ee;
    color: #ffffff;
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: #634EFF;
}

.btn-outline:hover {
    background: rgba(99, 78, 255, 0.1);
    color: #7b68ee;
}

/* =========================================
   Footer
========================================= */

footer {
    text-align: center;
    font-size: 0.9em;
    color: #777;
    padding: 30px 0;
    border-top: 1px solid #333;
    margin-top: 20px;
}

footer a {
    color: #a0a0a0;
    margin: 0 10px;
}

footer a:hover {
    color: #ffffff;
}

.footer-legal {
    margin-top: 20px;
}

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

/* =========================================
   Mobile Responsiveness
========================================= */

@media (max-width: 700px) {
    .pricing {
        flex-direction: column;
    }
    
    .faq-section {
        padding: 25px 20px;
    }
}
