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

:root {
    --primary-gradient: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    --primary-light: #34d399;
    --primary-dark: #047857;
    --teal: #14b8a6;
    --teal-light: #5eead4;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --bg-light: #f0fdf4;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Search Box Container */
.search-box-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    position: relative;
    margin-bottom: 2rem;
}

.search-input {
    flex: 1;
    padding: 1.25rem 4rem 1.25rem 1.75rem;
    font-size: 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: var(--shadow-md);
}

.search-input:focus {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.search-button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Quick Settings */
.quick-settings {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.setting-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.setting-label {
    font-weight: 600;
    color: var(--text-primary);
}

.count-selector {
    display: flex;
    gap: 0.5rem;
}

.count-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.count-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.count-btn.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* AI Toggle */
.ai-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.ai-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: var(--primary-gradient);
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* Search Suggestions */
.search-suggestions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.search-suggestions a {
    color: var(--primary-dark);
    text-decoration: none;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-suggestions a:hover {
    background: var(--primary-light);
    color: white;
    border-color: var(--primary-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-light);
}

.btn-secondary:hover {
    background: var(--primary-light);
    color: white;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

/* Browser Mockup */
.browser-mockup {
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.browser-bar {
    background: var(--bg-light);
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
}

.browser-dots span:first-child {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-url {
    flex: 1;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.browser-content {
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.browser-content.serp-preview {
    display: block;
    padding: 1.5rem;
}

/* Mini SERP Preview */
.mini-search-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    margin-bottom: 1rem;
    background: white;
}

.mini-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: transparent;
}

.mini-search-bar svg {
    color: var(--text-secondary);
    width: 16px;
    height: 16px;
}

.mini-results {
    margin-top: 1rem;
}

.mini-result {
    margin-bottom: 1rem;
}

.mini-title {
    height: 8px;
    width: 70%;
    background: #1a56db;
    border-radius: 4px;
    margin-bottom: 4px;
}

.mini-url {
    height: 6px;
    width: 50%;
    background: var(--primary-light);
    border-radius: 3px;
    margin-bottom: 4px;
}

.mini-desc {
    height: 12px;
    width: 90%;
    background: var(--border-color);
    border-radius: 4px;
}

.results-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.875rem;
}

.serp-preview .results-selector {
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
}

.selector-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.selector-options {
    display: flex;
    gap: 0.5rem;
}

.option {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background: white;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.serp-preview .option {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
}

.option:hover {
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.option.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 16px;
    background: var(--bg-light);
    transition: transform 0.3s ease;
    border: 1px solid #e0f2fe;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Feature Demos */
.feature-demo {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.demo-counts {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.demo-count {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    background: white;
    transition: all 0.3s ease;
}

.demo-count.active {
    border-color: var(--primary-light);
    background: var(--bg-light);
}

.demo-count strong {
    display: block;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.demo-count span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ai-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-on,
.ai-off {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.ai-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.ai-on {
    border-color: var(--primary-light);
    background: var(--bg-light);
}

.ai-off p {
    color: var(--text-secondary);
    font-style: italic;
}

/* Customize Section */
.customize {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.scenarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.scenario-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.scenario-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.scenario-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.scenario-settings {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.setting-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-secondary);
}

.setting-badge.active {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.setting-badge.ai {
    background: var(--teal);
    color: white;
    border-color: transparent;
}

.scenario-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Interactive Demo Section */
.demo-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.interactive-demo {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.demo-controls {
    margin-bottom: 2rem;
}

.demo-controls h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.demo-settings {
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.demo-setting {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-setting label {
    font-weight: 600;
    color: var(--text-primary);
}

.demo-setting select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: white;
    font-weight: 600;
    cursor: pointer;
}

.demo-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.demo-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.demo-toggle .toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}

.demo-toggle .toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.demo-toggle input:checked + .toggle-slider {
    background: var(--primary-gradient);
}

.demo-toggle input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

.demo-preview {
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.search-preview {
    background: var(--bg-light);
    padding: 1.5rem;
}

.preview-header {
    margin-bottom: 1rem;
}

.preview-query {
    font-weight: 600;
    color: var(--text-primary);
}

.ai-summary {
    background: white;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.results-list {
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

.result-item {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.result-item.more {
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

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

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Extension Section */
.extension-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.extension-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.extension-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.extension-features {
    list-style: none;
    margin-bottom: 2rem;
}

.extension-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.extension-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
}

.extension-preview-box {
    margin: 2rem 0;
    text-align: center;
}

.extension-mockup {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.extension-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.extension-benefits h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.extension-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.extension-benefit .benefit-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.extension-benefit h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.extension-benefit p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-gradient));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-support h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-support p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .scenarios {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .extension-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .quick-settings {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .search-input {
        padding: 1rem 3.5rem 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .search-button {
        width: 45px;
        height: 45px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-settings {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .search-input {
        padding: 1rem 3rem 1rem 1.25rem;
    }
    
    .search-button {
        width: 40px;
        height: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

.hero-content,
.feature-card,
.step,
.install-step {
    animation: fadeIn 0.6s ease-out;
}

/* Minimal Search Engine Homepage Styles */
.search-homepage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 50%, #dcfce7 100%);
}

.search-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.search-logo {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
    text-align: center;
}

.search-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.search-form {
    position: relative;
    width: 100%;
}

.search-homepage .search-input {
    width: 100%;
    padding: 1.25rem 4rem 1.25rem 1.75rem;
    font-size: 1.125rem;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-homepage .search-input:focus {
    border-color: #34d399;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.search-submit {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-submit:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.search-tagline {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 2rem;
}

.result-count-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

.selector-label {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.selector-buttons {
    display: flex;
    gap: 0.5rem;
}

.count-option {
    padding: 0.5rem 1rem;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.count-option:hover {
    border-color: #34d399;
    color: #047857;
}

.count-option.active {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: transparent;
}

.minimal-footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.minimal-footer a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

.minimal-footer a:hover {
    color: #047857;
}

.minimal-footer .separator {
    color: #e5e7eb;
    margin: 0 0.5rem;
}

/* Responsive adjustments for search homepage */
@media (max-width: 768px) {
    .search-logo {
        font-size: 2.25rem;
        margin-bottom: 2rem;
    }
    
    .search-homepage .search-input {
        font-size: 1rem;
        padding: 1rem 3.5rem 1rem 1.5rem;
    }
    
    .search-submit {
        width: 45px;
        height: 45px;
    }
    
    .search-tagline {
        font-size: 1rem;
    }
    
    .result-count-selector {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .selector-buttons {
        gap: 0.5rem;
    }
    
    .count-option {
        padding: 0.5rem 0.875rem;
    }
}

@media (max-width: 480px) {
    .search-logo {
        font-size: 1.875rem;
    }
    
    .search-wrapper {
        max-width: 100%;
    }
    
    .minimal-footer {
        font-size: 0.75rem;
    }
    
    .minimal-footer .separator {
        margin: 0 0.25rem;
    }
}