:root {
    --primary-blue: rgb(101, 120, 232);
    --accent-orange: rgb(255, 151, 77);
    --dark-text: rgb(17, 17, 17);
    --medium-text: rgb(73, 73, 73);
    --light-text: rgb(97, 97, 97);
    --lighter-text: rgb(135, 135, 135);
    --background-light: rgb(254, 254, 254);
    --background-cream: rgb(250, 250, 247);
    --white: rgb(255, 255, 255);
    --border-light: rgb(152, 152, 151);
    --success-green: rgb(99, 156, 194);
    
    --font-inter: 'Inter', sans-serif;
    --font-urbanist: 'Urbanist', sans-serif;
    
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    color: var(--dark-text);
    line-height: 1.6;
    background-color: var(--background-light);
}

.navbar {
    background-color: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    text-decoration: none;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.logo-text {
    font-family: var(--font-urbanist);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark-text);
}

.nav-link {
    color: var(--medium-text) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

.nav-link.active {
    color: var(--primary-blue) !important;
}

.login-link {
    color: var(--primary-blue) !important;
    font-weight: 600;
}

.login-link:hover {
    color: var(--accent-orange) !important;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 151, 77, 0.1) 0%, 
        rgba(101, 120, 232, 0.05) 25%,
        rgba(254, 254, 254, 0.9) 50%,
        rgba(255, 151, 77, 0.08) 75%,
        rgba(101, 120, 232, 0.1) 100%);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(101, 120, 232, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(101, 120, 232, 0.2);
}

.hero-title {
    font-family: var(--font-urbanist);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-align: center;
}

.cta-button {
    background: var(--primary-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trusted-by-section {
    margin-top: 4rem;
    text-align: center;
}

.trusted-text {
    color: var(--lighter-text);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-item {
    color: var(--lighter-text);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.7;
}

.backed-by-section {
    margin-top: 3rem;
}

.backed-text {
    color: var(--lighter-text);
    font-size: 0.875rem;
}

.badge-y {
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

.intro-section {
    padding: 5rem 0;
    background: var(--background-cream);
}

.section-title {
    font-family: var(--font-urbanist);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.section-description {
    font-size: 1rem;
    color: var(--medium-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-eyebrow {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.features-section {
    padding: 5rem 0;
    background: var(--white);
}

.use-cases-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.use-case-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.use-case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.use-case-label {
    color: var(--lighter-text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.use-case-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(101, 120, 232, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
}

.use-case-icon.orange {
    background: rgba(255, 151, 77, 0.1);
    color: var(--accent-orange);
}

.use-case-title {
    font-family: var(--font-urbanist);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.use-case-description {
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.use-case-visual {
    position: relative;
    height: 200px;
    background: var(--background-cream);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lead-network {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-node {
    width: 12px;
    height: 12px;
    background: var(--border-light);
    border-radius: 50%;
    position: absolute;
    opacity: 0.6;
}

.lead-node.active {
    background: var(--primary-blue);
    opacity: 1;
    box-shadow: 0 0 10px rgba(101, 120, 232, 0.3);
}

.lead-node.qualified {
    background: var(--accent-orange);
    opacity: 1;
    box-shadow: 0 0 10px rgba(255, 151, 77, 0.3);
}

.lead-node:nth-child(1) { top: 20%; left: 20%; }
.lead-node:nth-child(2) { top: 30%; left: 60%; }
.lead-node:nth-child(3) { top: 60%; left: 30%; }
.lead-node:nth-child(4) { top: 70%; left: 70%; }
.lead-node:nth-child(5) { top: 40%; left: 80%; }
.lead-node:nth-child(6) { top: 80%; left: 50%; }
.lead-node:nth-child(7) { top: 50%; left: 10%; }

.lead-score-card {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--white);
    padding: 0.5rem;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    color: var(--success-green);
}

.analytics-dashboard {
    width: 100%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chart-container {
    flex: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 1rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
    opacity: 0.8;
}

.metrics-panel {
    display: flex;
    justify-content: center;
}

.metric-item {
    text-align: center;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--lighter-text);
    display: block;
}

.metric-value {
    font-weight: 700;
    color: var(--success-green);
    font-size: 1.25rem;
}

.contact-section {
    padding: 5rem 0;
    background: var(--background-cream);
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(101, 120, 232, 0.1);
    outline: none;
}

.thank-you-message {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.success-icon {
    font-size: 3rem;
    color: var(--success-green);
    margin-bottom: 1rem;
}

.thank-you-message h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.thank-you-message p {
    color: var(--medium-text);
}

.pricing-page {
    padding-top: 100px;
}

.pricing-hero {
    padding: 3rem 0;
    text-align: center;
    background: var(--background-light);
}

.pricing-title {
    font-family: var(--font-urbanist);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--light-text);
}

.pricing-plans {
    padding: 4rem 0;
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

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

.pricing-card.popular {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--background-cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--dark-text);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

.plan-name {
    font-family: var(--font-urbanist);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--medium-text);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-text);
}

.period {
    font-size: 1rem;
    color: var(--light-text);
    margin-left: 0.25rem;
}

.popular-tag {
    background: var(--primary-blue);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.discount-badge {
    background: var(--accent-orange);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.plan-description {
    color: var(--light-text);
    font-size: 0.875rem;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-text);
}

.feature-item i {
    color: var(--success-green);
    font-size: 0.875rem;
}

.pricing-cta .btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.subscription-text {
    color: var(--light-text);
    text-align: center;
    margin-top: 2rem;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    color: var(--accent-orange);
}

.enterprise-section {
    padding: 4rem 0;
    background: var(--background-cream);
}

.enterprise-title {
    font-family: var(--font-urbanist);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.enterprise-subtitle {
    font-family: var(--font-urbanist);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.enterprise-description {
    color: var(--medium-text);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.enterprise-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.legal-page {
    padding-top: 100px;
    padding-bottom: 3rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-family: var(--font-urbanist);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.last-updated {
    color: var(--light-text);
    font-size: 0.875rem;
}

.legal-content {
    max-width: none;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-family: var(--font-urbanist);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.legal-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--dark-text);
}

.legal-section p {
    color: var(--medium-text);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-details {
    background: var(--background-cream);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--accent-orange);
}

.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-title {
    font-family: var(--font-urbanist);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

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

.footer-links a:hover {
    color: var(--primary-blue);
}

.contact-info {
    font-size: 0.875rem;
}

.contact-info p {
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.contact-info a:hover {
    color: var(--primary-blue);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-title {
        font-size: 2.25rem;
    }
    
    .company-logos {
        gap: 1rem;
    }
    
    .logo-item {
        font-size: 0.8rem;
    }
    
    .use-case-visual {
        height: 150px;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .pricing-title {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
