:root {
    /* Color Palette - Modern Dark Theme */
    --bg-color: #0B0F19; /* Deep dark blue */
    --surface-color: rgba(30, 41, 59, 0.5); /* Glass surface */
    --surface-border: rgba(255, 255, 255, 0.1);
    
    --primary-color: #6366f1; /* Indigo */
    --primary-hover: #4f46e5;
    --secondary-color: #ec4899; /* Pink */
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    --success: #10b981;
    --danger: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.5), rgba(236, 72, 153, 0.5));
    
    /* Effects */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --glass-blur: blur(12px);
}

[data-theme="light"] {
    /* Color Palette - Modern Light Theme */
    --bg-color: #f1f5f9; /* Slate 100 */
    --surface-color: rgba(255, 255, 255, 0.6); /* Glass surface */
    --surface-border: rgba(0, 0, 0, 0.05);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    
    /* Effects */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

:root {
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    position: relative;
    min-height: 100vh;
}

/* Animated Background Shapes */
.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
    animation: float 10s infinite alternate;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    top: -150px;
    left: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ec4899, #f43f5e);
    bottom: 10%;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    top: 40%;
    left: 20%;
    animation-delay: -2s;
    opacity: 0.4;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(10deg); }
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Glass UI Classes */
.glass-panel {
    background: var(--surface-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--surface-border);
    box-shadow: var(--glass-shadow);
    border-radius: var(--radius-lg);
}

/* Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(11, 15, 25, 0.7);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
    padding: 16px 0;
    transition: var(--transition);
}

[data-theme="light"] .glass-header {
    background: rgba(241, 245, 249, 0.8);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.logo .version {
    font-size: 0.8rem;
    background: var(--gradient-primary);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    vertical-align: super;
}

.nav-links {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .header-lang {
        display: none;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #ec4899, #a855f7, #6366f1);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
}

.btn-primary.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--surface-border);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--surface-color);
}

.btn-text {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
}

/* Unique Header Section */
.unique-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.unique-header .section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.15rem;
}

/* Modern Filter Dock */
.filter-dock {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    background: var(--surface-color);
    padding: 8px;
    border-radius: var(--radius-full);
    border: 1px solid var(--surface-border);
    box-shadow: var(--glass-shadow);
    backdrop-filter: var(--glass-blur);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn i {
    font-size: 1.2rem;
}

.filter-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .filter-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

/* Hero Section */
.hero {
    padding: 120px 0 40px; /* Reduced from 160px top, 100px bottom */
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Visual */
.visual-card {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    box-shadow: var(--glass-shadow);
}

.visual-icons {
    position: relative;
    width: 200px;
    height: 200px;
}

.icon-main {
    font-size: 120px;
    color: var(--primary-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.icon-sub {
    font-size: 48px;
    position: absolute;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    animation: float-icon 6s infinite alternate ease-in-out;
}

.icon-1 { color: #ec4899; top: -20px; right: -20px; animation-delay: 0s; }
.icon-2 { color: #10b981; bottom: -20px; left: -20px; animation-delay: -1.5s; }
.icon-3 { color: #f59e0b; top: 50%; left: -50px; animation-delay: -3s; }

@keyframes float-icon {
    0% { transform: translateY(0); }
    100% { transform: translateY(-40px); }
}

/* Tools Section */
.tools-section {
    padding: 20px 0 80px; /* Reduced top padding */
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 48px;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tool-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius-md);
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    background: rgba(30, 41, 59, 0.8);
}

.tool-card:hover::before {
    opacity: 1;
}

[data-theme="light"] .tool-card:hover {
    background: white;
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.15), 0 10px 10px -5px rgba(99, 102, 241, 0.1);
}

.tool-icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Specific Category Colors */
.tool-icon-wrapper.color-0 {
    background: linear-gradient(135deg, #6366f1, #3b82f6);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.tool-card:hover .tool-icon-wrapper.color-0 {
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.tool-icon-wrapper.color-1 {
    background: linear-gradient(135deg, #f59e0b, #ea580c);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}
.tool-card:hover .tool-icon-wrapper.color-1 {
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.tool-icon-wrapper.color-2 {
    background: linear-gradient(135deg, #ec4899, #e11d48);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}
.tool-card:hover .tool-icon-wrapper.color-2 {
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.5);
}

.tool-icon-wrapper.color-3 {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.tool-card:hover .tool-icon-wrapper.color-3 {
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.tool-card:hover .tool-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.tool-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tool Interface */
.tool-interface {
    padding: 120px 0 80px;
    min-height: 90vh;
}

.btn-back {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.btn-back:hover {
    color: var(--text-primary);
}

.tool-header {
    text-align: center;
    margin-bottom: 48px;
}

.tool-title {
    font-size: 3rem;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tool-desc {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.tool-workspace {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
}

.upload-area {
    border: 2px dashed var(--primary-color);
    border-radius: var(--radius-md);
    padding: 60px 24px;
    transition: var(--transition);
    background: rgba(99, 102, 241, 0.05);
}

.upload-area.dragover {
    background: rgba(99, 102, 241, 0.2);
    border-color: #a855f7;
}

.upload-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.upload-area h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.upload-area p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hidden-input {
    display: none;
}

.hidden {
    display: none !important;
}

/* File Preview */
.files-preview {
    text-align: left;
}

.preview-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--surface-border);
    padding-bottom: 8px;
}

.file-list {
    margin-bottom: 24px;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 8px;
    gap: 16px;
}

.file-item i {
    font-size: 24px;
    color: var(--primary-color);
}

.file-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-size {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tool-actions {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 24px;
}

/* States */
.processing-state, .result-state {
    text-align: center;
    padding: 48px 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 24px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.success-icon {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 24px;
}

.result-state h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.btn-download {
    margin: 24px 0;
    display: inline-flex;
}

/* Custom Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: var(--transition);
}

.modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-box {
    width: 90%;
    max-width: 400px;
    padding: 40px 32px;
    text-align: center;
    transform: translateY(0) scale(1);
    transition: var(--transition);
    background: var(--surface-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .modal-box {
    background: white;
    border-color: rgba(99, 102, 241, 0.3);
}

.modal-overlay.hidden .modal-box {
    transform: translateY(20px) scale(0.95);
}

.modal-icon {
    font-size: 64px;
    color: var(--secondary-color);
    margin-bottom: 16px;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-box h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.modal-box p {
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.modal-box .btn-primary {
    width: 100%;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    color: var(--text-secondary);
    border-top: 1px solid var(--surface-border);
    margin-top: 80px;
}

/* ============================
   Enhanced Header & Footer CSS
   ============================ */

/* Header Nav */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    min-width: 400px;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.dropdown-grid h5 {
    color: var(--text-primary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.dropdown-grid a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
}

.dropdown-grid a:hover {
    color: var(--primary-color);
}

.dropdown-grid i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Enhanced Footer */
.site-footer {
    background: var(--surface-color);
    border-top: 1px solid var(--surface-border);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.brand-col .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.brand-col .logo i {
    color: var(--primary-color);
}

.footer-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

[data-theme="light"] .social-links a {
    background: rgba(0, 0, 0, 0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.footer-col h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--surface-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 20px;
}

.language-select {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

[data-theme="light"] .language-select {
    background: rgba(0, 0, 0, 0.05);
}

.language-select select {
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
    font-family: inherit;
    cursor: pointer;
}


/* Marketing Sections */
.marketing-section {
    padding: 80px 0;
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.text-muted { color: var(--text-secondary); }

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.step-card {
    padding: 20px;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--surface-color);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: var(--primary-color);
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--surface-border);
}
.step-card h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.step-card p {
    color: var(--text-secondary);
}

/* Features Mockup */
.mockup-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 40px auto;
    max-width: 900px;
    border: 1px solid var(--surface-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mockup-img {
    width: 100%;
    display: block;
}
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}
.feature-block h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.feature-block p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Trust / Testimonials */
.trust-section.bg-light {
    background: rgba(0,0,0,0.02);
}
[data-theme="dark"] .trust-section.bg-light {
    background: rgba(255,255,255,0.02);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
}
.testimonial-card .rating {
    color: #fbbf24;
    margin-bottom: 15px;
    display: flex;
    gap: 4px;
}
.testimonial-card p {
    color: var(--text-secondary);
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 20px;
    line-height: 1.6;
}
.testimonial-card .user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-card .user i {
    font-size: 2.5rem;
    color: var(--text-secondary);
}
.testimonial-card .user h5 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: var(--text-primary);
}
.testimonial-card .user span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide Hero and Intro Text on Mobile */
    .hero {
        display: none;
    }
    
    .unique-header .badge,
    .unique-header .section-title,
    .unique-header .section-subtitle {
        display: none;
    }
    
    .unique-header {
        margin-bottom: 24px;
    }
    
    .tools-section {
        padding-top: 100px;
    }
    
    .tool-workspace {
        padding: 24px;
    }
    
    .steps-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    /* Mobile Card Layout - Horizontal List Style */
    .tool-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 12px;
        text-align: left;
        padding: 20px;
        align-items: center;
    }
    
    .tool-card .tool-icon-wrapper {
        grid-column: 1;
        grid-row: 1;
        width: 48px;
        height: 48px;
        margin: 0;
        font-size: 24px;
    }
    
    .tool-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        font-size: 1.25rem;
    }
    
    .tool-card p {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--glass-shadow);
        border-bottom: 1px solid var(--surface-border);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 12px 0 0;
        min-width: 100%;
        background: transparent;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

