/* iLoveIMG Style Front Page for Tooldid Theme */

/* ===== iLoveIMG Navigation Styles ===== */
.navbar.tooldid-navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #4a90e2;
    gap: 10px;
    text-decoration: none;
}

.logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: #555;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover, .nav-link.active {
    color: #4a90e2;
    text-decoration: none;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: #333;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #f5f5f5;
    cursor: pointer;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}

/* ===== iLoveIMG Hero Section ===== */
.hero.tooldid-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: #333;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== iLoveIMG Tool Selector ===== */
.tool-selector {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.tool-tabs {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.tool-tab {
    flex: 1;
    min-width: 120px;
    padding: 20px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tool-tab:hover {
    color: #4a90e2;
}

.tool-tab.active {
    color: #4a90e2;
    border-bottom-color: #4a90e2;
    background-color: white;
}

.tool-tab i {
    font-size: 24px;
}

.tool-panel {
    padding: 40px;
    display: none;
}

.tool-panel.active {
    display: block;
}

/* ===== iLoveIMG Upload Area ===== */
.upload-area {
    text-align: center;
    padding: 40px;
    border: 2px dashed #ddd;
    border-radius: 12px;
    margin-bottom: 30px;
    transition: border-color 0.3s ease;
}

.upload-area:hover {
    border-color: #4a90e2;
}

.upload-area i {
    font-size: 48px;
    color: #4a90e2;
    margin-bottom: 20px;
}

.upload-area h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.upload-note {
    color: #999;
    font-size: 14px;
    margin-top: 15px;
}

/* ===== iLoveIMG Tool Options ===== */
.option-group {
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.slider-container {
    position: relative;
    padding-top: 10px;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4a90e2;
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

/* ===== iLoveIMG Preview Comparison ===== */
.preview-comparison {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.preview-before, .preview-after {
    flex: 1;
    text-align: center;
}

.preview-before h4, .preview-after h4 {
    color: #333;
    margin-bottom: 15px;
}

.preview-img {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.preview-img img {
    width: 100%;
    height: auto;
    display: block;
}

.file-size {
    font-weight: 600;
    color: #333;
}

/* ===== iLoveIMG Tools Section ===== */
.tools-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 36px;
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tool-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a90e2;
    font-size: 24px;
}

.tool-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.tool-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 60px;
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4a90e2;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.tool-link:hover {
    gap: 12px;
    text-decoration: none;
}

/* ===== iLoveIMG Features Section ===== */
.features-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4a90e2;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== iLoveIMG CTA Section ===== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4a90e2 0%, #3a7bc8 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background-color: white;
    color: #4a90e2;
}

.cta-section .btn-primary:hover {
    background-color: #f5f5f5;
}

/* ===== iLoveIMG Footer ===== */
.footer.tooldid-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col .logo {
    justify-content: flex-start;
    color: white;
    margin-bottom: 20px;
}

.footer-description {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #4a90e2;
    text-decoration: none;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #4a90e2;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.copyright {
    color: #bdc3c7;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #bdc3c7;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links-bottom a:hover {
    color: #4a90e2;
    text-decoration: none;
}

/* ===== iLoveIMG Buttons (Override) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    gap: 8px;
    text-decoration: none;
}

.btn-primary {
    background-color: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background-color: #3a7bc8;
    text-decoration: none;
}

.btn-outline {
    background-color: transparent;
    border-color: #ddd;
    color: #555;
}

.btn-outline:hover {
    border-color: #4a90e2;
    color: #4a90e2;
    text-decoration: none;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== Membership/Pricing Section (iLoveIMG Style) ===== */
.membership-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid #eee;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: #4a90e2;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4a90e2;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

.plan-description {
    color: #666;
    font-size: 0.875rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #666;
}

.pricing-features li i {
    color: #10b981;
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: #ef4444;
}

.pricing-footer {
    padding: 2rem;
    padding-top: 0;
    text-align: center;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #4a90e2;
    color: #4a90e2;
}

.btn-outline-primary:hover {
    background: #4a90e2;
    color: white;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .tool-tabs {
        flex-wrap: wrap;
    }
    
    .tool-tab {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .preview-comparison {
        flex-direction: column;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .tool-panel {
        padding: 20px;
    }
    
    .upload-area {
        padding: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Featured Tools Section */
.featured-tools-section {
    background-color: var(--tooldid-gray-50);
}

.featured-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.featured-tool-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--tooldid-gray-200);
}

.featured-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--tooldid-primary);
}

.tool-card-header {
    background: linear-gradient(135deg, var(--tooldid-primary), #7c3aed);
    padding: 1.5rem;
    position: relative;
}

.tool-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tool-card-body {
    padding: 1.5rem;
}

.tool-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--tooldid-gray-900);
}

.tool-title a {
    color: inherit;
    text-decoration: none;
}

.tool-title a:hover {
    color: var(--tooldid-primary);
}

.tool-description {
    color: var(--tooldid-gray-700);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tool-category {
    display: inline-block;
}

.category-tag {
    background: var(--tooldid-gray-100);
    color: var(--tooldid-gray-700);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tool-card-footer {
    padding: 1.5rem;
    padding-top: 0;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--tooldid-primary);
    color: var(--tooldid-primary);
}

.btn-outline-primary:hover {
    background: var(--tooldid-primary);
    color: white;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.category-card:hover {
    border-color: var(--tooldid-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    color: inherit;
    text-decoration: none;
}

.category-icon {
    font-size: 2.5rem;
    color: var(--tooldid-primary);
    margin-bottom: 1rem;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--tooldid-gray-900);
}

.category-count {
    color: var(--tooldid-gray-700);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--tooldid-primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(to bottom, white, var(--tooldid-gray-50));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--tooldid-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    z-index: 2;
}

.step-icon {
    width: 5rem;
    height: 5rem;
    background: var(--tooldid-gray-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--tooldid-primary);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--tooldid-gray-900);
}

.step-description {
    color: var(--tooldid-gray-700);
    line-height: 1.6;
}

.privacy-notice-box {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.privacy-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-content p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Membership Section */
.membership-section {
    background: linear-gradient(to bottom, var(--tooldid-gray-50), white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--tooldid-gray-200);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--tooldid-primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--tooldid-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--tooldid-gray-200);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--tooldid-gray-900);
    margin-bottom: 1rem;
}

.plan-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--tooldid-gray-900);
}

.price-period {
    font-size: 1rem;
    color: var(--tooldid-gray-700);
}

.plan-description {
    color: var(--tooldid-gray-700);
    font-size: 0.875rem;
}

.pricing-features {
    padding: 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--tooldid-gray-700);
}

.pricing-features li i {
    color: var(--tooldid-success);
}

.pricing-features li.disabled {
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: var(--tooldid-danger);
}

.pricing-footer {
    padding: 2rem;
    padding-top: 0;
    text-align: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .featured-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .privacy-notice-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}
