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

body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.6;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

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

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

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

.logo {
    text-decoration: none;
    color: inherit;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: rgb(100, 100, 100);
}

.browse-btn {
    background: none;
    border: none;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.browse-btn:hover {
    color: rgb(100, 100, 100);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero h1 {
    font-size: 58px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.hero-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    margin-bottom: 48px;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-input {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0);
    outline: none;
    transition: border-color 0.2s ease;
}

.search-input:focus {
    border-color: rgba(0, 0, 0, 0.3);
}

.search-shortcut {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 14px;
    color: rgb(100, 100, 100);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: rgb(255, 255, 255);
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 64px;
    color: rgb(0, 0, 0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-bottom: 80px;
}

.feature-card {
    text-align: left;
}

.feature-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.feature-content p {
    font-size: 16px;
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.price-card {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    border-radius: 12px;
    padding: 24px;
    min-width: 200px;
    color: rgb(0, 0, 0);
}

.price-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.company-icon {
    width: 24px;
    height: 24px;
    background: rgb(0, 0, 0);
    border-radius: 50%;
}

.price-amount {
    font-size: 32px;
    font-weight: 600;
}

.price-period {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.comparison-card {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 12px;
    padding: 24px;
    min-width: 200px;
}

.score-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

.score-bar {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: rgb(0, 0, 0);
}

.expert-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.badge {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.rating {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.stars {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 16px;
    color: rgb(0, 0, 0);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: rgb(255, 255, 255);
}

.process-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 64px;
    color: rgb(100, 100, 100);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: rgb(0, 0, 0);
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.process-visual {
    margin-bottom: 32px;
}

.step-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.step-card {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 20px;
    flex: 1;
}

.step-header {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgb(100, 100, 100);
}

.step-price {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.step-price span {
    font-size: 14px;
    font-weight: 400;
    color: rgb(100, 100, 100);
}

.step-info h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.step-list {
    list-style: none;
}

.step-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: rgb(100, 100, 100);
}

.step-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: rgb(0, 0, 0);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgb(255, 255, 255);
}

.faq-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.faq-subtitle {
    text-align: center;
    font-size: 18px;
    color: rgb(100, 100, 100);
    margin-bottom: 48px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
}

.faq-item summary {
    padding: 24px 0;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgb(0, 0, 0);
}

.faq-item summary::after {
    content: "+";
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding-bottom: 24px;
    color: rgb(100, 100, 100);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 64px 0 32px;
}

.footer-newsletter {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-newsletter p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 16px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: rgb(255, 255, 255);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
    padding: 12px 24px;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.newsletter-button:hover {
    background: rgba(255, 255, 255, 0.9);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(255, 255, 255);
}

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

.footer-section li {
    margin-bottom: 12px;
}

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

.footer-section a:hover {
    color: rgb(255, 255, 255);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact {
    margin-top: 16px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: rgb(255, 255, 255);
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.pricing-hero h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.pricing-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.pricing-card.featured {
    border: 2px solid rgb(0, 0, 0);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

.pricing-header p {
    color: rgb(100, 100, 100);
    margin-bottom: 24px;
}

.pricing-price {
    margin-bottom: 32px;
}

.price {
    font-size: 48px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.price-unit {
    font-size: 16px;
    color: rgb(100, 100, 100);
    display: block;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 8px 0;
    color: rgb(0, 0, 0);
    font-size: 16px;
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.pricing-button:hover {
    background: rgb(50, 50, 50);
}

.pricing-card.featured .pricing-button {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    color: rgb(0, 0, 0);
}

.pricing-card.featured .pricing-button:hover {
    background: linear-gradient(135deg, #ff8a8e 0%, #fdbfdf 100%);
}

.pricing-calculator {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
}

.pricing-calculator h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.pricing-calculator p {
    text-align: center;
    color: rgb(100, 100, 100);
    margin-bottom: 48px;
}

.calculator {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

.input-group input {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
}

.input-group input:focus {
    border-color: rgb(0, 0, 0);
}

.calculator-results {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.highlight {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    margin: 16px -32px -32px;
    padding: 24px 32px;
    border-radius: 0 0 12px 12px;
}

.result-label {
    font-weight: 500;
    color: rgb(0, 0, 0);
}

.result-value {
    font-size: 24px;
    font-weight: 600;
    color: rgb(0, 0, 0);
}

.pricing-faq {
    padding: 80px 0;
}

.pricing-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 48px;
    color: rgb(0, 0, 0);
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.contact-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    max-width: 700px;
    margin: 0 auto;
}

.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.contact-info > p {
    color: rgb(100, 100, 100);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 48px;
}

.contact-item {
    margin-bottom: 24px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

.contact-item p {
    color: rgb(100, 100, 100);
    line-height: 1.5;
}

.contact-benefits h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.contact-benefits ul {
    list-style: none;
}

.contact-benefits li {
    padding: 8px 0;
    color: rgb(100, 100, 100);
    font-size: 16px;
}

.contact-form-container {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: rgb(0, 0, 0);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgb(0, 0, 0);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background: rgb(50, 50, 50);
}

.form-note {
    font-size: 14px;
    color: rgb(100, 100, 100);
    margin-top: 16px;
    text-align: center;
}

.contact-cta {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.contact-cta p {
    color: rgb(100, 100, 100);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.primary {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}

.cta-button.secondary {
    background: rgba(0, 0, 0, 0.1);
    color: rgb(0, 0, 0);
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.features-hero h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.features-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    max-width: 700px;
    margin: 0 auto;
}

.features-overview {
    padding: 80px 0;
}

.features-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card-large {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-card-large h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.feature-card-large p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 6px 0;
    color: rgb(100, 100, 100);
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(0, 0, 0);
}

.features-comparison {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
}

.features-comparison h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 48px;
    color: rgb(0, 0, 0);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.comparison-header {
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.comparison-cell {
    padding: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    text-align: left;
    font-weight: 500;
}

.biosynth {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    font-weight: 600;
}

.competitor {
    color: rgb(100, 100, 100);
}

.features-analytics {
    padding: 80px 0;
}

.features-analytics h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.section-subtitle {
    text-align: center;
    color: rgb(100, 100, 100);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.analytics-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s ease;
}

.analytics-card:hover {
    transform: translateY(-2px);
}

.analytics-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(0, 0, 0);
}

.analytics-card p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
}

.features-cta {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
    text-align: center;
}

.features-cta h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.features-cta p {
    color: rgb(100, 100, 100);
    margin-bottom: 32px;
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.product-hero h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.product-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    max-width: 700px;
    margin: 0 auto;
}

.product-overview {
    padding: 80px 0;
}

.product-overview h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.section-intro {
    text-align: center;
    color: rgb(100, 100, 100);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.advantage-card {
    text-align: center;
    padding: 32px 24px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

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

.advantage-number {
    font-size: 48px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 16px;
}

.advantage-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgb(0, 0, 0);
}

.advantage-card p {
    color: rgb(100, 100, 100);
    line-height: 1.5;
}

.product-process {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
}

.product-process h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 64px;
    color: rgb(0, 0, 0);
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 64px;
    align-items: start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.step-content p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.step-features li {
    color: rgb(100, 100, 100);
    position: relative;
    padding-left: 20px;
}

.step-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: rgb(0, 0, 0);
}

.product-technology {
    padding: 80px 0;
}

.product-technology h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.tech-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s ease;
}

.tech-card:hover {
    transform: translateY(-4px);
}

.tech-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.tech-card p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
}

.product-comparison {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
}

.product-comparison h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 48px;
    color: rgb(0, 0, 0);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-side {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-side.biosynth {
    border: 2px solid rgb(0, 0, 0);
}

.comparison-side h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
    text-align: center;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 32px;
}

.comparison-list li.positive::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.comparison-list li.negative::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.product-results {
    padding: 80px 0;
}

.product-results h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.result-stat {
    text-align: center;
    padding: 32px 24px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 8px;
}

.stat-label {
    color: rgb(100, 100, 100);
    font-size: 16px;
}

.product-cta {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
    text-align: center;
}

.product-cta h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.product-cta p {
    color: rgb(100, 100, 100);
    margin-bottom: 32px;
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.about-subtitle {
    font-size: 18px;
    color: rgb(100, 100, 100);
    max-width: 700px;
    margin: 0 auto;
}

.about-mission {
    padding: 80px 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

.mission-text h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.mission-text p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 24px;
}

.mission-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.stat-item .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: rgb(100, 100, 100);
    font-size: 14px;
}

.about-story {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
}

.about-story h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 48px;
    color: rgb(0, 0, 0);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 24px;
}

.about-values {
    padding: 80px 0;
}

.about-values h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 48px;
    color: rgb(0, 0, 0);
}

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

.value-card {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.value-card p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
}

.about-team {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.02);
}

.about-team h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 24px;
    color: rgb(0, 0, 0);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.team-member {
    background: rgb(255, 255, 255);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 32px;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: rgb(0, 0, 0);
}

.member-title {
    color: rgb(100, 100, 100);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-bio {
    color: rgb(100, 100, 100);
    line-height: 1.6;
}

.about-cta {
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.about-cta p {
    color: rgb(100, 100, 100);
    margin-bottom: 32px;
}

/* Legal Pages Styles */
.legal-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: rgb(255, 255, 255);
}

.legal-hero h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 16px;
    color: rgb(0, 0, 0);
}

.legal-subtitle {
    font-size: 16px;
    color: rgb(100, 100, 100);
}

.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 48px 0 16px;
    color: rgb(0, 0, 0);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-text li {
    color: rgb(100, 100, 100);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info {
    background: rgba(0, 0, 0, 0.02);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .step-cards {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .calculator {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .pricing-hero h1 {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-hero h1 {
        font-size: 36px;
    }
    
    .features-grid-large {
        grid-template-columns: 1fr;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .product-hero h1 {
        font-size: 36px;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
    
    .technology-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-container {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mission-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-container {
        padding: 12px 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
}
