/* 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: #f8fafc;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.25rem;
    color: #1e40af;
}

.logo-text {
    color: #1e40af;
}

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

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1e40af;
}

.nav-login {
    color: #64748b !important;
}

.nav-signup {
    background: #1e90ff;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}

.nav-signup:hover {
    background: #1e40af;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: #1e90ff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 4px 6px rgba(30, 144, 255, 0.2);
}

.btn-primary:hover {
    background: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(30, 144, 255, 0.3);
}

.btn-primary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.btn-subtitle {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-secondary {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.btn-secondary:hover {
    color: #1e40af;
}

/* Hero Image */
.hero-image {
    margin-top: 2rem;
}

.demo-browser {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.browser-header {
    background: #f1f5f9;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.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 {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    color: #64748b;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
}

.browser-content {
    padding: 2rem;
}

.dashboard-preview {
    display: flex;
    gap: 1.5rem;
    min-height: 200px;
}

.dashboard-sidebar {
    width: 200px;
    background: #f8fafc;
    border-radius: 0.5rem;
    padding: 1rem;
}

.sidebar-item {
    padding: 0.75rem;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-item.active {
    background: #1e90ff;
    color: white;
}

.dashboard-main {
    flex: 1;
}

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

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.875rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: white;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e90ff;
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #1e90ff;
    padding: 3rem 0;
    text-align: center;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.domain-builder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.domain-prefix {
    background: #f1f5f9;
    padding: 1rem 1.5rem;
    color: #64748b;
    font-weight: 500;
    border-right: 1px solid #e2e8f0;
}

.domain-input {
    flex: 1;
    padding: 1rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.btn-cta {
    background: #1e90ff;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-cta:hover {
    background: #1e40af;
}

/* Platform Section */
.platform-section {
    padding: 4rem 0;
    background: white;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 3rem;
}

.platform-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.platform-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.platform-feature.reverse {
    direction: rtl;
}

.platform-feature.reverse > * {
    direction: ltr;
}

.platform-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.platform-feature-content p {
    color: #64748b;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.feature-mockup {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.mockup-header {
    background: #f8fafc;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e40af;
    text-align: center;
}

.chart-placeholder {
    height: 120px;
    background: linear-gradient(45deg, #1e90ff20, #1e40af20);
    margin: 1rem;
    border-radius: 0.5rem;
    position: relative;
}

.chart-placeholder::after {
    content: "📊";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

.metrics-row {
    display: flex;
    padding: 1rem;
    gap: 1rem;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 0.5rem;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e90ff;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

.campaign-list, .lead-list {
    padding: 1rem;
}

.campaign-item, .lead-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 0.375rem;
    background: #f8fafc;
}

.campaign-item.active {
    background: #1e90ff10;
    border-left: 3px solid #1e90ff;
}

.campaign-status {
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background: #10b981;
    color: white;
}

.lead-item {
    border-left: 3px solid #e2e8f0;
}

.lead-item.high-score {
    border-left-color: #10b981;
}

.lead-item.medium-score {
    border-left-color: #f59e0b;
}

.lead-info {
    flex: 1;
}

.lead-name {
    font-weight: 600;
    color: #1e40af;
}

.lead-company {
    font-size: 0.875rem;
    color: #64748b;
}

.lead-score {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e90ff;
    background: white;
    padding: 0.5rem;
    border-radius: 0.375rem;
    min-width: 50px;
    text-align: center;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1e90ff, #1e40af);
    padding: 4rem 0;
    text-align: center;
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 2rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e90ff;
}

.footer-tagline h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #e2e8f0;
}

.footer-tagline p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.contact-info strong {
    color: #e2e8f0;
}

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

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #1e90ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-container,
    .features-container,
    .platform-container,
    .cta-container,
    .final-cta-container {
        padding: 0 1rem;
    }
    
    .platform-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-feature.reverse {
        direction: ltr;
    }
    
    .domain-builder {
        flex-direction: column;
        max-width: 300px;
    }
    
    .domain-prefix {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-preview {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
    }
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 6rem 0 3rem;
    text-align: center;
}

.active {
    color: #1e90ff !important;
}

/* Features page styles */
.features-detailed {
    padding: 4rem 0;
    background: white;
}

.feature-section {
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.feature-section.reverse .feature-header {
    flex-direction: row-reverse;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-icon-large {
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.feature-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.features-cta {
    background: linear-gradient(135deg, #1e90ff, #1e40af);
    padding: 4rem 0;
    text-align: center;
}

.features-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.features-cta p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Pricing page styles */
.pricing-section {
    padding: 4rem 0;
    background: white;
}

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

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

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #1e90ff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(30, 144, 255, 0.15);
}

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

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e90ff;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.pricing-price {
    margin-bottom: 1rem;
}

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

.price-period {
    color: #64748b;
    font-size: 1rem;
    margin-left: 0.5rem;
}

.pricing-description {
    color: #64748b;
    line-height: 1.6;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #f1f5f9;
    color: #1e40af;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}

.btn-pricing:hover {
    background: #e2e8f0;
}

.btn-pricing.primary {
    background: #1e90ff;
    color: white;
}

.btn-pricing.primary:hover {
    background: #1e40af;
}

.pricing-info {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-guarantee {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid #1e90ff;
}

.pricing-guarantee h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.pricing-faq h3 {
    color: #1e40af;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

.faq-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}

.pricing-cta {
    background: linear-gradient(135deg, #1e90ff, #1e40af);
    padding: 4rem 0;
    text-align: center;
}

.pricing-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    color: white;
    opacity: 0.8;
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Product page styles */
.product-overview {
    padding: 4rem 0;
    background: white;
}

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

.overview-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.overview-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e90ff;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    color: #64748b;
    font-weight: 500;
}

.how-it-works {
    padding: 4rem 0;
    background: #f8fafc;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.process-step.reverse {
    direction: rtl;
}

.process-step.reverse > * {
    direction: ltr;
}

.step-number {
    width: 80px;
    height: 80px;
    background: #1e90ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: #1e90ff;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.competitive-advantage {
    padding: 4rem 0;
    background: white;
}

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

.comparison-item {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.comparison-icon {
    margin-bottom: 1.5rem;
}

.comparison-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #64748b;
    line-height: 1.6;
}

.technology-stack {
    padding: 4rem 0;
    background: #f8fafc;
}

.tech-overview {
    max-width: 800px;
    margin: 0 auto;
}

.tech-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-content > p {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 3rem;
}

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

.tech-feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.tech-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.75rem;
}

.tech-feature p {
    color: #64748b;
    line-height: 1.6;
}

.product-cta {
    background: linear-gradient(135deg, #1e90ff, #1e40af);
    padding: 4rem 0;
    text-align: center;
}

.product-cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-cta p {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact page styles */
.contact-section {
    padding: 4rem 0;
    background: white;
}

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

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

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-benefits {
    margin-bottom: 3rem;
}

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

.benefit-item h4 {
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details h3 {
    color: #1e40af;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.contact-form-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    color: #1e40af;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form > p {
    color: #64748b;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1e40af;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e90ff;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: #1e90ff;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    background: #1e40af;
}

.btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
}

.form-note {
    color: #64748b;
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: center;
}

.contact-cta {
    background: #f8fafc;
    padding: 3rem 0;
    text-align: center;
}

.contact-cta h2 {
    color: #1e40af;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

/* Legal pages styles */
.legal-content {
    padding: 4rem 0;
    background: white;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-text h2 {
    color: #1e40af;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-text ul {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text .contact-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #1e90ff;
    margin-top: 1rem;
}

.legal-text .contact-info p {
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-container,
    .features-container,
    .platform-container,
    .cta-container,
    .final-cta-container,
    .product-container,
    .contact-container,
    .pricing-container,
    .legal-container {
        padding: 0 1rem;
    }
    
    .platform-feature {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platform-feature.reverse {
        direction: ltr;
    }
    
    .domain-builder {
        flex-direction: column;
        max-width: 300px;
    }
    
    .domain-prefix {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-contact {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-preview {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
    }
    
    .feature-header {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .feature-section.reverse .feature-header {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .process-step.reverse {
        direction: ltr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
    }
    
    .overview-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links a {
        font-size: 0.875rem;
    }
    
    .nav-signup {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
