/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4f46e5;
}

.nav-logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4f46e5;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #4f46e5;
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: #4f46e5;
    color: white;
    border-color: #4f46e5;
}

.btn-primary:hover {
    background-color: #4338ca;
    border-color: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4f46e5;
    border-color: #4f46e5;
}

.btn-secondary:hover {
    background-color: #4f46e5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Hero Section */
.hero {
    padding: 160px 0 120px;
    background: white;
    color: #1a1a1a;
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-content {
    position: relative;
}

/* Two-column hero layout inspired by Brais */
.subhero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.subhero-column {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1);
}

.subhero-text {
    margin-bottom: 2.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.1;
    color: #1a1a1a;
}

.text-color-highlighted {
    color: #4f46e5;
}

.subhero-text-paragraph {
    margin-bottom: 2rem;
}

.subhero-text-paragraph p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

.subhero-text-paragraph strong {
    color: #1a1a1a;
    font-weight: 600;
}

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

.button.is-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 24px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.button.is-icon:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.text-weight-semibold {
    font-weight: 600;
}

.text-size-regular {
    font-size: 1rem;
}

.icon-embed-xsmall {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-embed-xsmall svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.subhero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Legacy hero styles for backward compatibility */
.hero-cta {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 0.9rem;
    padding: 8px 16px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1a1a1a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-subtitle strong {
    font-weight: 600;
}

.hero-main-cta {
    font-size: 1rem;
    padding: 12px 24px;
    background: #000;
    color: white;
    border: none;
    border-radius: 4px;
    margin-top: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.section-header h3,
.section-subtitle {
    font-size: 1.3rem;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-subtitle {
    color: #4f46e5;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

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

.workflow-step {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.workflow-step h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.workflow-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Newsletter Signup Section */
.newsletter-signup {
    padding: 100px 0;
    background: white;
    color: #1a1a1a;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.newsletter-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-tagline {
    font-weight: 600 !important;
    margin-bottom: 2rem !important;
}

.signup-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.email-input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    min-width: 300px;
    background: white;
}

.signup-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.form-messages {
    margin-top: 1rem;
}

.success-message,
.error-message {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: none;
}

.success-message {
    color: #059669;
}

.error-message {
    color: #dc2626;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Pages Specific Styles */

/* Product Overview */
.product-overview {
    padding: 100px 0;
}

.demo-section {
    margin-top: 3rem;
    text-align: center;
}

.demo-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.demo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Building Blocks (Tensor) */
.building-blocks {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.block-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.block-card:hover {
    transform: translateY(-3px);
}

.block-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.block-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Use Cases */
.use-cases,
.use-cases-desk,
.use-cases-agents {
    padding: 100px 0;
}

.use-cases-browse {
    padding: 100px 0;
}

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

/* Browse page specific use cases grid */
.use-cases-browse .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Browse page specific use case cards */
.use-cases-browse .use-case-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

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

.use-case-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.use-case-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Features Detail */
.features-detail {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.feature-detail {
    text-align: center;
}

.feature-detail h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-detail p {
    color: #6b7280;
    line-height: 1.8;
}

/* Integration Previews (Desk) */
.integration-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.integration-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-3px);
}

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

.integration-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.integration-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Features Showcase (Desk) */
.features-showcase {
    padding: 100px 0;
    background-color: #f9fafb;
}

.feature-showcase-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-showcase-card:hover {
    transform: translateY(-5px);
}

/* Workflow Benefits (Desk) */
.workflow-benefits {
    padding: 100px 0;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Browser Features (Browse) */
.browser-features {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.browser-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.browser-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.browser-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Workflow Integration (Browse) */
.workflow-integration {
    padding: 100px 0;
}

.workflow-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.workflow-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.workflow-text p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.workflow-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 1.5rem;
    min-width: 2rem;
}

.benefit-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.benefit-text p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Extension Preview (Browse) */
.extension-preview {
    max-width: 400px;
}

.browser-mockup {
    background: #f3f4f6;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.browser-header {
    background: #e5e7eb;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dot.red { background: #ef4444; }
.browser-dot.yellow { background: #f59e0b; }
.browser-dot.green { background: #10b981; }

.address-bar {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    flex: 1;
    font-size: 0.9rem;
    color: #6b7280;
}

.browser-content {
    padding: 2rem;
    background: white;
    min-height: 200px;
    position: relative;
}

.betterais-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4f46e5;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
}

.overlay-header {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Extension Details (Browse) */
.extension-details {
    padding: 100px 0;
    background-color: #f9fafb;
}

.extension-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.extension-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
}

.extension-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.extension-cta h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.extension-cta p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.extension-note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

/* Agent Features (Agents) */
.agent-benefits {
    padding: 100px 0;
}

.agent-features {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.agent-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.agent-feature-card:hover {
    transform: translateY(-5px);
}

.agent-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

/* Agent Workflow */
.agent-workflow {
    padding: 100px 0;
}

.step-content {
    text-align: left;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1f2937;
}

.step-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* Agent Advantages */
.agent-advantages {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-3px);
}

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

.advantage-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.advantage-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* FAQ for specific pages */
.faq-agents {
    padding: 100px 0;
}

/* Footer */
.footer {
    padding: 50px 0 30px;
    background-color: white;
    color: #1a1a1a;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-pages h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #1a1a1a;
}

.footer-social h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.social-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #1a1a1a;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #1a1a1a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .use-cases-grid,
    .blocks-grid,
    .agent-features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* Browse page specific responsive */
    .use-cases-browse .use-cases-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .browser-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .workflow-split,
    .extension-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content,
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links,
    .footer-legal {
        justify-content: center;
    }
    
    .signup-form {
        flex-direction: column;
        align-items: center;
    }
    
    .email-input {
        min-width: 250px;
    }
    
    .workflow-benefit {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .pricing-card-featured {
        transform: none;
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Tensor page responsive */
    .hero-cta {
        position: static;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-columns {
        justify-content: center;
    }
    
    .footer-bottom {
        justify-content: center;
    }
    
    /* Subhero responsive */
    .subhero-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .subhero-text {
        margin-bottom: 2rem;
    }
    
    .subhero-text-paragraph {
        margin-bottom: 1.5rem;
    }
    
    .subhero-text-paragraph p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .button-group {
        justify-content: center;
    }
}

/* Pricing Styles */
.pricing-plans {
    padding: 100px 0;
    background-color: #f9fafb;
}

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

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
    border-color: #4f46e5;
    transform: scale(1.05);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #4f46e5;
}

.price-period {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-check {
    color: #10b981;
    font-weight: 600;
    font-size: 1.1rem;
    min-width: 1.5rem;
}

.feature-item span:last-child {
    color: #374151;
    line-height: 1.5;
}

.pricing-note {
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
}

.pricing-cta {
    text-align: center;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

/* Contact section for Enterprise */
.contact-section {
    padding: 100px 0;
    background-color: #ffffff;
}

#contact {
    scroll-margin-top: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1f2937;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 2rem;
    text-align: center;
}

.contact-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.enterprise-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.enterprise-form input,
.enterprise-form select,
.enterprise-form textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.enterprise-form input:focus,
.enterprise-form select:focus,
.enterprise-form textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.enterprise-form textarea {
    resize: vertical;
    min-height: 100px;
}

.enterprise-form button {
    margin-top: 0.5rem;
}

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

.feature-card,
.use-case-card,
.block-card,
.agent-feature-card,
.advantage-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}
