/* CodeTools.cloud - Modern AI Tool Style - Tools App Focus */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(37, 99, 235, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --font-size-xs: 0.6rem;
    --font-size-sm: 0.7rem;
    --font-size-base: 0.8rem;
    --font-size-lg: 0.9rem;
    --font-size-xl: 1rem;
    --font-size-2xl: 1.1rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles - Tools App Focus */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0.8rem 5px;
    gap: 1rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-item,
.nav-dropdown {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 700;
    transition: color 0.3s;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: rgba(255, 0, 0, 0.05);
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.dropdown-link:hover {
    background-color: var(--bg-gray);
    color: var(--primary);
}

/* Main content */
.main {
    min-height: calc(100vh - 140px);
    background-color: var(--bg-gray);
}

/* Hero section - Tools App Focus */
.hero {
    text-align: center;
    padding: 4rem 0 3.2rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.hero p {
    font-size: 0.96rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Tools grid - iloveimg.com style - Tools App Focus */
.tools-section {
    padding: 2.4rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2.4rem;
}

/* Platforms Table Layout */
.platforms-table {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.platform-row {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.platform-row:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border);
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.platform-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.platform-details p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    margin: 0;
}

.view-all-btn {
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.view-all-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Tools Grid Inside Platform Rows */
.platform-row .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    margin: 0;
}

.tool-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-height: 80px;
}

.tool-item:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tool-name {
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: 0.3rem;
    color: var(--text-dark);
}

.tool-desc {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.4;
}

/* Original Tools Grid for compatibility */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(224px, 1fr));
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .platforms-table {
        gap: 1rem;
    }
    
    .platform-row {
        border-radius: var(--radius);
    }
    
    .platform-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .platform-info {
        width: 100%;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .platform-details h3 {
        font-size: 1.1rem;
    }
    
    .platform-details p {
        font-size: var(--font-size-sm);
    }
    
    .view-all-btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem;
    }
    
    .platform-row .tools-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .tool-item {
        min-height: 70px;
        padding: 0.8rem;
    }
    
    .tool-name {
        font-size: var(--font-size-base);
    }
    
    .tool-desc {
        font-size: var(--font-size-xs);
    }
}

@media (max-width: 480px) {
    .platform-header {
        padding: 0.8rem;
    }
    
    .platform-info {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .platform-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .platform-row .tools-grid {
        padding: 0.8rem;
    }
    
    .tool-item {
        min-height: 65px;
        padding: 0.7rem;
    }
}

/* Tablet Optimization */
@media (min-width: 769px) and (max-width: 1024px) {
    .platform-row .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .platform-header {
        padding: 1.2rem;
    }
    
    .platform-icon {
        width: 55px;
        height: 55px;
    }
}

.tool-card {
    background: var(--bg-white);
    padding: 2rem 1.6rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.tool-icon {
    width: 51px;
    height: 51px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.2rem;
    font-weight: bold;
}

.tool-card h3 {
    font-size: 1.04rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.tool-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.2rem;
    font-size: var(--font-size-sm);
}

/* Buttons - YouTube style - Tools App Focus */
.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-white);
}

/* Tool pages - Tools App Focus */
.tool-page {
    padding: 1.12rem 0;
    background: var(--bg-gray);
    min-height: calc(100vh - 98px);
}

.page-header {
    background: var(--bg-white);
    padding: 1.68rem 0;
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.page-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.56rem;
}

.page-header p {
    font-size: 0.67rem;
    color: var(--text-light);
    max-width: 420px;
    margin: 0 auto;
}

.tool-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(213px, 1fr));
    gap: 1.12rem;
    padding: 1.68rem 0;
}

.tool-item {
    background: var(--bg-white);
    padding: 1.12rem;
    border-radius: 8.4px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.tool-item h3 {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.84rem;
    display: flex;
    align-items: center;
    gap: 0.28rem;
}

.tool-item h3::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
}

/* Form elements - Tools App Focus */
.form-group {
    margin-bottom: 0.84rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.42rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: var(--font-size-sm);
}

.form-control {
    width: 100%;
    padding: 0.56rem;
    border: 1.4px solid var(--border);
    border-radius: 5.6px;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2.1px rgba(255, 0, 0, 0.1);
}

textarea.form-control {
    min-height: 67.2px;
    resize: vertical;
}

/* Results */
.result {
    background: var(--bg-gray);
    border: 1.4px solid var(--border);
    border-radius: 5.6px;
    padding: 1.05rem;
    margin-top: 1.05rem;
}

.result h4 {
    color: var(--primary);
    margin-bottom: 0.7rem;
    font-size: 0.84rem;
}

.result-content {
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 1rem 0;
    height: auto;
    min-height: auto;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer p {
    opacity: 1;
    font-size: 0.8rem;
    line-height: 1.3;
    margin: 0.3rem 0;
    color: var(--white);
    font-weight: 400;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0.8rem 15px;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 80px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item,
    .nav-dropdown {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: left;
        border-radius: 0;
        border: none;
        background: transparent;
    }
    
    .nav-dropdown {
        position: relative;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        background: var(--bg-gray);
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding: 0;
    }
    
    .dropdown-link {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid var(--border);
        font-size: 0.9rem;
    }
    
    .dropdown-link:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 3rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .tools-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .tool-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .tool-card, .tool-item {
        padding: 1.5rem;
        margin: 0 10px;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .tool-card h3, .tool-item h3 {
        font-size: 1.1rem;
    }
    
    .tool-card p, .tool-item p {
        font-size: 0.9rem;
    }
}

/* Additional Styles for Tool Pages */
.tools-navigation {
    padding: 2rem 0;
}

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

.tool-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: bold;
}

.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.tool-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tool-features span {
    background: var(--bg-gray);
    color: var(--text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--text-light);
}

/* Benefit Items */
.benefit-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    line-height: 1.5;
}

/* Responsive improvements for tools navigation */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}



@media (max-width: 480px) {
    .tool-card {
        padding: 1rem;
    }
    
    .tool-features {
        gap: 0.3rem;
    }
    
    .tool-features span {
        font-size: var(--font-size-xs);
        padding: 0.2rem 0.4rem;
    }
}

/* Enhanced Benefits Section Styles */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

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

.benefit {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.benefit h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Responsive benefits layout */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid .benefit:nth-child(n+5) {
        grid-column: span 2;
    }
}

/* Platforms Page Styles */
.platforms-main {
    min-height: calc(100vh - 140px);
    background: var(--bg-gray);
}

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

.platform-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: left 0.3s ease;
}

.platform-card:hover::before {
    left: 0;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.platform-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
}

/* Coming Soon Page Styles */
.platform-main {
    min-height: calc(100vh - 140px);
    background: var(--bg-gray);
}

.coming-soon-section {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
}

.coming-soon-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.coming-soon-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.coming-soon-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-base);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.coming-soon-description {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Responsive Design for Platforms */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .platform-card {
        padding: 2rem 1.5rem;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .platform-card h3 {
        font-size: 1.3rem;
    }
    
    .coming-soon-section {
        margin: 2rem auto 0;
    }
    
    .coming-soon-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-list {
        text-align: center;
    }
    
    .feature-list li {
        padding-left: 0;
        text-align: center;
    }
    
    .feature-list li::before {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Additional Styles for Tool Pages */
.tools-navigation {
    padding: 2rem 0;
}

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

.tool-card {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.tool-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: bold;
}

.tool-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.tool-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

.tool-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tool-features span {
    background: var(--bg-gray);
    color: var(--text-light);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 500;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: var(--font-size-base);
    color: var(--text-light);
}

/* Benefit Items */
.benefit-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    line-height: 1.5;
}

/* Responsive improvements for tools navigation */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
    
    .tool-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}



@media (max-width: 480px) {
    .tool-card {
        padding: 1rem;
    }
    
    .tool-features {
        gap: 0.3rem;
    }
    
    .tool-features span {
        font-size: var(--font-size-xs);
        padding: 0.2rem 0.4rem;
    }
}

/* Enhanced Benefits Section Styles */
.benefits-section {
    padding: 4rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
}

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

.benefit {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.benefit h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: var(--font-size-base);
}

/* Responsive benefits layout */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    .benefit h3 {
        font-size: 1.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefits-grid .benefit:nth-child(n+5) {
        grid-column: span 2;
    }
}

/* Platforms Page Styles */
.platforms-main {
    min-height: calc(100vh - 140px);
    background: var(--bg-gray);
}

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

.platform-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transition: left 0.3s ease;
}

.platform-card:hover::before {
    left: 0;
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.platform-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.platform-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: var(--font-size-base);
}

/* Coming Soon Page Styles */
.platform-main {
    min-height: calc(100vh - 140px);
    background: var(--bg-gray);
}

.coming-soon-section {
    max-width: 600px;
    margin: 4rem auto 0;
    text-align: center;
}

.coming-soon-content {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1;
}

.coming-soon-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.coming-soon-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-base);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
    font-size: var(--font-size-base);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.coming-soon-description {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Responsive Design for Platforms */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .platform-card {
        padding: 2rem 1.5rem;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .platform-card h3 {
        font-size: 1.3rem;
    }
    
    .coming-soon-section {
        margin: 2rem auto 0;
    }
    
    .coming-soon-content {
        padding: 2rem 1.5rem;
    }
    
    .coming-soon-icon {
        font-size: 3rem;
    }
    
    .coming-soon-content h2 {
        font-size: 1.6rem;
    }
    
    .feature-list {
        text-align: center;
    }
    
    .feature-list li {
        padding-left: 0;
        text-align: center;
    }
    
    .feature-list li::before {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}