/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1F2937;
    --primary-dark: #111827;
    --secondary-color: #1F2937;
    --accent-color: #EAB308;
    --text-dark: #0E0E0E;
    --text-light: #6b7280;
    --bg-light: #141414;
    --bg-white: #252525;
    --border-color: #333333;
    --success-color: #22c55e;
    --warning-color: #EAB308;
    --gradient: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
    --radius-sm: 3px;
    --radius-md: 3px;
    --radius-lg: 3px;
    --radius-xl: 3px;
}

body {
    font-family: 'Neue Montreal', Arial, sans-serif;
    line-height: 1.7;
    color: #e5e5e5;
    background-color: #141414;
    font-size: 20px;
    font-weight: 400;
}

code, pre, .monospace {
    font-family: 'PP Supply Mono', 'Courier New', monospace;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.header.scrolled {
    background: rgba(20, 20, 20, 0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #e5e5e5;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.btn-submit {
    background: var(--accent-color);
    color: #0E0E0E !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s;
    font-weight: 700;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #d4a006;
}

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

/* Fixed Video Background */
.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.65);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 300px;
    width: 60%;
    height: auto;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

/* Frosted glass for all content sections below hero */
.content-wrapper {
    position: relative;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.tool-detail-content {
    position: relative;
    background: rgba(20, 20, 20, 0.75);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s backwards;
    color: #EAB308;
}


/* Categories Section */
.categories {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #e5e5e5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.category-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.category-card i {
    font-size: 2rem;
    color: var(--accent-color);
}

.category-card span {
    font-weight: 600;
    color: #e5e5e5;
}

.category-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card.active {
    background: var(--accent-color);
    border-color: transparent;
    color: #0E0E0E;
}

.category-card.active i,
.category-card.active span {
    color: #0E0E0E;
}

/* Filters Section */
.filters {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filter-bar {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: #e5e5e5;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #252525;
    color: #e5e5e5;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    border-color: var(--accent-color);
}

.results-count {
    margin-left: auto;
    font-weight: 600;
    color: var(--text-light);
}

.results-count span {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Tools Grid */
.tools-section {
    padding: 4rem 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.tool-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.tool-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E0E0E;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.tool-info {
    flex: 1;
}

.tool-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #e5e5e5;
    margin-bottom: 0.25rem;
}

.tool-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #141414;
    color: var(--accent-color);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tool-description {
    color: #9ca3af;
    line-height: 1.6;
    flex: 1;
}

.tool-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.tool-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.pricing-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
}

.pricing-free {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.pricing-freemium {
    background: rgba(234, 179, 8, 0.15);
    color: #EAB308;
}

.pricing-paid {
    background: rgba(234, 179, 8, 0.08);
    color: #d4a006;
}

.tool-link {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: #0E0E0E;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: background 0.3s;
}

.tool-link:hover {
    background: #d4a006;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.no-results p {
    color: #9ca3af;
}

/* Load More Button */
.load-more-container {
    text-align: center;
}

.btn-load-more {
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: #0E0E0E;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #d4a006;
}

/* Featured Section */
.featured-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Submit Section */
.submit-section {
    padding: 4rem 0;
}

.submit-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.submit-card h2 {
    font-size: 24px;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.submit-card p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.submit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #e5e5e5;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #141414;
    color: #e5e5e5;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.btn-submit-form {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #0E0E0E;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: #d4a006;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-card {
    text-align: center;
    color: white;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 24px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.cta-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: #ffffff;
    color: #0E0E0E;
}

.cta-form button {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #0E0E0E;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-form button:hover {
    background: #d4a006;
}

/* Notification Card */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s;
}

.notification-overlay.visible {
    opacity: 1;
}

.notification-card {
    background: #252525;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s;
}

.notification-overlay.visible .notification-card {
    transform: scale(1);
}

.notification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.notification-success .notification-icon {
    color: var(--success-color);
}

.notification-error .notification-icon {
    color: #ef4444;
}

.notification-card h3 {
    font-size: 1.5rem;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.notification-card p {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.notification-close {
    padding: 0.75rem 2.5rem;
    background: var(--accent-color);
    color: #0E0E0E;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.notification-close:hover {
    background: #d4a006;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(14, 14, 14, 0.95);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        border-top: 1px solid var(--border-color);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .btn-submit {
        text-align: center;
        margin-top: 0.5rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-logo {
        max-width: 220px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-form {
        flex-direction: column;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 16px;
    }

    .hero-logo {
        max-width: 180px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.5rem;
    }

    .category-card {
        padding: 1rem;
        gap: 0.5rem;
    }

    .category-card i {
        font-size: 1.5rem;
    }

    .category-card span {
        font-size: 0.8rem;
    }

    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .results-count {
        margin-left: 0;
    }

    .categories,
    .tools-section,
    .featured-section {
        padding: 2rem 0;
    }

    .submit-card {
        padding: 2rem 1.5rem;
    }
}

/* Tool Detail Pages */
.tool-detail-hero {
    position: relative;
    background: transparent;
    color: white;
    padding: 8rem 0 3rem;
}

.tool-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 14, 0.65);
    z-index: 0;
}

.tool-detail-hero > .container {
    position: relative;
    z-index: 1;
}

.tool-detail-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tool-detail-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    backdrop-filter: blur(10px);
}

.tool-detail-info h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tool-detail-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tool-detail-category {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.tool-detail-description {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
}

.tool-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: #0E0E0E;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tool-detail-content {
    padding: 4rem 0;
}

.detail-section {
    margin-bottom: 4rem;
}

.detail-section h2 {
    font-size: 24px;
    color: #e5e5e5;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    color: #e5e5e5;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: #9ca3af;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.pricing-plan {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.pricing-plan.featured {
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

.pricing-plan.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--accent-color);
    color: #0E0E0E;
    padding: 0.25rem 3rem;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-plan h3 {
    font-size: 1.5rem;
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.pricing-plan .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.pricing-plan .price span {
    font-size: 1rem;
    color: #9ca3af;
    font-weight: 400;
}

.pricing-plan ul {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-plan ul li {
    padding: 0.75rem 0;
    color: #e5e5e5;
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.pricing-plan ul li i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.pros, .cons {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pros h3 {
    color: var(--success-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cons h3 {
    color: var(--warning-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros ul li, .cons ul li {
    padding: 0.75rem 0;
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: #e5e5e5;
}

.pros ul li i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.cons ul li i {
    color: var(--warning-color);
    margin-top: 0.25rem;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.use-case {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

.use-case h4 {
    color: #e5e5e5;
    margin-bottom: 0.5rem;
}

.use-case p {
    color: #9ca3af;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 2rem;
    transition: gap 0.3s;
}

.back-link:hover {
    gap: 1rem;
}

@media (max-width: 968px) {
    .tool-detail-header {
        flex-direction: column;
        text-align: center;
    }

    .tool-detail-info h1 {
        font-size: 2rem;
    }

    .tool-detail-actions {
        flex-direction: column;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}
