/* Custom CSS Variables */
:root {
    --primary-blue: #2545d3;
    --primary-blue-light: rgba(37, 69, 211, 0.04);
    --primary-blue-hover: #1e3bb8;
    --dark-text: #121926;
    --secondary-text: #60646c;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --yellow-banner: #ffd700;
    --success-green: #28a745;
    --gradient-primary: linear-gradient(135deg, #2545d3 0%, #4f46e5 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background-color: var(--white);
}

/* Notification Banner */
.notification-banner {
    background: var(--yellow-banner);
    color: var(--dark-text);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

.banner-link {
    color: var(--dark-text);
    text-decoration: underline;
    font-weight: 600;
}

.banner-link:hover {
    color: var(--primary-blue);
}

/* Header */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.navbar-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-link {
    color: var(--secondary-text) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

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

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: var(--secondary-text);
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-blue-light);
    color: var(--primary-blue);
}

/* Buttons */
.btn-primary {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-blue-hover);
    border-color: var(--primary-blue-hover);
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    font-weight: 600;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--secondary-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.mockup-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-title {
    font-weight: 600;
}

.mockup-content {
    padding: 1.5rem;
}

.lead-card {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lead-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lead-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-secondary);
}

.lead-name {
    font-weight: 600;
    color: var(--dark-text);
}

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

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

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

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
}

.bar {
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    flex: 1;
    min-height: 20px;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from { height: 0; }
    to { height: var(--height); }
}

/* Company Logos */
.logos-section {
    padding: 3rem 0;
    background: var(--white);
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
}

.logo-item {
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item i {
    font-size: 2rem;
    color: var(--secondary-text);
}

/* Product Overview */
.product-overview {
    padding: 5rem 0;
    background: var(--white);
}

.product-overview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--primary-blue-hover);
    gap: 0.75rem;
}

/* Industry Leading Section */
.industry-leading {
    padding: 5rem 0;
    background: var(--light-gray);
}

.section-badge {
    display: inline-block;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-leading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--secondary-text);
}

.feature-list i {
    color: var(--success-green);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.comparison-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.plasmonix-card {
    border: 2px solid var(--primary-blue);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.plasmonix-card .card-header {
    color: var(--primary-blue);
}

.plasmonix-card .card-header i {
    font-size: 1.25rem;
}

.comparison-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.metric-label {
    min-width: 100px;
    font-size: 0.875rem;
    color: var(--secondary-text);
}

.metric-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--primary-blue);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.metric-fill.competitor {
    background: #dc3545;
}

.metric-value {
    min-width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--dark-text);
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: var(--white);
}

.success-stories h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.success-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.success-metric {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.success-card p {
    color: var(--secondary-text);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 2rem;
}

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

.main-footer h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

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

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

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

.footer-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

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

.footer-contact h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.footer-contact a {
    color: var(--white);
    text-decoration: none;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .product-overview,
    .industry-leading,
    .success-stories,
    .cta-section {
        padding: 3rem 0;
    }
    
    .dashboard-mockup {
        transform: none;
        margin-top: 2rem;
    }
    
    .comparison-visual {
        margin-top: 2rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 1rem;
    }
    
    .logo-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.6s ease-out forwards;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

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

.pricing-hero .hero-description {
    font-size: 1.25rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-md);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--primary-blue);
    transform: scale(1.05);
}

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

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

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

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-text);
    vertical-align: top;
}

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

.period {
    display: block;
    font-size: 0.875rem;
    color: var(--secondary-text);
    margin-top: 0.5rem;
}

.plan-description {
    color: var(--secondary-text);
    line-height: 1.6;
}

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

.plan-features h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

.plan-features .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-text);
}

.plan-features .feature-list i {
    color: var(--success-green);
    font-size: 1rem;
}

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

.plan-note {
    font-size: 0.875rem;
    color: var(--secondary-text);
    margin-top: 1rem;
    margin-bottom: 0;
}

.pricing-faq {
    padding: 5rem 0;
    background: var(--light-gray);
}

.pricing-faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--white);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

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

.contact-hero .hero-description {
    font-size: 1.25rem;
    color: var(--secondary-text);
    line-height: 1.6;
}

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

.contact-form-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e9ecef;
}

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

.form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.form-header p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(37, 69, 211, 0.1);
}

.contact-form .form-check-input {
    border: 2px solid #e9ecef;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.contact-form .form-check-label {
    color: var(--secondary-text);
    line-height: 1.5;
}

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

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

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

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

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

.thank-you-message p {
    color: var(--secondary-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-info {
    padding: 4rem 0;
    background: var(--light-gray);
}

.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

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

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.contact-info-card p {
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

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

.contact-link:hover {
    color: var(--primary-blue-hover);
    text-decoration: underline;
}

.contact-address {
    color: var(--secondary-text);
    font-style: normal;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

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

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

.legal-body {
    color: var(--secondary-text);
    line-height: 1.7;
}

.legal-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

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

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

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

.legal-body .contact-info {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.legal-body .contact-info p {
    margin-bottom: 0;
    line-height: 1.6;
}

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

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

/* Additional Responsive Styles */
@media (max-width: 992px) {
    .pricing-card.featured {
        transform: none;
        margin-top: 2rem;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-hero .hero-title,
    .contact-hero .hero-title {
        font-size: 2rem;
    }
    
    .pricing-hero .hero-description,
    .contact-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-body h2 {
        font-size: 1.5rem;
    }
}
