:root {
    --bg-dark: #0f0f1a;
    --bg-light: #1a1a2e;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b5;
    --border-color: rgba(255, 255, 255, 0.1);
    --accent-color: #2575fc;
    --accent-gradient: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    --accent-glow: rgba(45, 130, 255, 0.5);
    --font-primary: 'Roboto', sans-serif;
    --card-shadow: 0 10px 30px var(--accent-glow);
    --border-radius: 15px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    margin: 0;
    padding: 40px 20px;
    background-image: radial-gradient(circle at top, var(--bg-light) 0%, var(--bg-dark) 60%);
}

/* --- Header --- */
.main-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.main-header h1 {
    font-size: 3rem;
    margin: 0;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.main-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* --- Tool Grid --- */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}
.tool-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}
.tool-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: var(--accent-color);
}
.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-icon svg {
    width: 28px;
    height: 28px;
    fill: #fff;
}
.tool-card h2 {
    margin: 0 0 10px 0;
    font-size: 1.4rem;
}
.tool-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- How It Works Section --- */
.how-it-works-section {
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
}
.how-it-works-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.step {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.step-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px auto;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}
.step h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}
.step p {
    margin: 0;
    color: var(--text-secondary);
}

/* --- Commitment Section --- */
.commitment-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}
.commitment-section h2 {
    font-size: 2rem;
}
.commitment-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 50px 20px;
    color: var(--text-secondary);
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px 30px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-column h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 10px;
}
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gradient);
}
.footer-column.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column.links li {
    margin-bottom: 10px;
}
.footer-column.links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-column.links a:hover {
    color: var(--accent-color);
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-3px);
}
.social-links svg {
    width: 20px;
    height: 20px;
}
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

/* ======================================== */
/* ======== MOBILE RESPONSIVE CODE ======== */
/* ======================================== */
@media (max-width: 768px) {
    body {
        padding: 30px 15px; /* Less padding on smaller screens */
    }

    /* --- Typography Adjustments --- */
    .main-header h1 { font-size: 2.2rem; }
    .main-header p { font-size: 1rem; }
    .how-it-works-section h2 { font-size: 2rem; }
    .commitment-section h2 { font-size: 1.8rem; }
    .tool-card h2 { font-size: 1.3rem; }
    .tool-card p { font-size: 0.95rem; }

    /* --- Layout Adjustments --- */
    .tool-grid,
    .steps-container {
        /* Force a single column layout for grids on mobile */
        grid-template-columns: 1fr;
    }
    .tool-card {
        padding: 25px;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-links {
        justify-content: center;
    }
}
/* Add this to the end of your CSS file */

.tool-card p,
.step p,
.commitment-section p,
.footer-column p {
    overflow-wrap: break-word;
    word-break: break-word; /* Optional, for extra browser support */
}

* {
    border: 1px #0f0f1a !important;
}