/* Modern Landing Page Styles - Based on Clause design */

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

body.lp-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Typography */
.lp-modern h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lp-modern h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.lp-modern h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.lp-modern .lead {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.75;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.lp-modern .lead.desc {
    font-size: 1rem;
    color: #6b7280;
    text-align: left;
    margin: 0;
}

/* Header */
.lp-modern .header {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.lp-modern .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.lp-modern .logo-bot {
    color: #047857;
}

.lp-modern .logo-cen {
    color: #bd0053;
}

/* Hero Section */
.lp-modern .hero-section {
    background: white;
    padding: 5rem 0 4rem;
    text-align: center;
}

/* Buttons */
.lp-modern .btn-primary-modern {
    background: #047857;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.lp-modern .btn-primary-modern:hover {
    background: #065f46;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(4, 120, 87, 0.2);
    color: white;
}

.lp-modern .btn-secondary-modern {
    background: white;
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.lp-modern .btn-secondary-modern:hover {
    border-color: #d1d5db;
    background: #f9fafb;
    color: #1a1a1a;
}

/* Section Styles */
.lp-modern .section {
    padding: 4rem 0;
}

.lp-modern .section-light {
    background: white;
    padding: 4rem 0;
}

.lp-modern .section-grey {
    background: #f8f9fa;
    padding: 4rem 0;
}

.lp-modern .section-dark {
    background: #1e3a3a;
    color: white;
    padding: 4rem 0;
}

.lp-modern .section-dark h1,
.lp-modern .section-dark h2,
.lp-modern .section-dark h3 {
    color: white;
}

.lp-modern .section-dark .lead {
    color: #d1d5db;
}

/* Feature Cards */
.lp-modern .feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.lp-modern .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
}

.lp-modern .feature-card h3 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

/* Icon Styles */
.lp-modern .feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #047857;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.lp-modern .feature-tile-icon {
    font-size: 34px;
    color: #047857;
    width: 44px;
    flex-shrink: 0;
}

/* Stats */
.lp-modern .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.lp-modern .stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Integration Grid */
.lp-modern .integration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .lp-modern .integration-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lp-modern .integration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.lp-modern .integration-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.2s;
    min-height: 140px;
}

.lp-modern .integration-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.lp-modern .integration-item img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* Feature Tiles (6-grid layout) */
.lp-modern .feature-tiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.lp-modern .feature-tile {
    display: flex;
    align-items: start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    transition: all 0.2s;
}

.lp-modern .feature-tile:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Form Styles */
.lp-modern .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s;
    width: 100%;
    margin-bottom: 1rem;
}

.lp-modern .form-control:focus {
    outline: none;
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.1);
}

/* Container */
.lp-modern .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Testimonial */
.lp-modern .testimonial {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-align: center;
}

.lp-modern .testimonial-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lp-modern .testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.lp-modern .testimonial-role {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Two Column Layout */
.lp-modern .two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .lp-modern .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lp-modern h1 {
        font-size: 2.5rem;
    }
    
    .lp-modern h2 {
        font-size: 1.875rem;
    }
    
    .lp-modern .feature-tiles {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.lp-modern .text-center {
    text-align: center;
}

.lp-modern .mb-4 {
    margin-bottom: 2rem;
}

.lp-modern .mt-4 {
    margin-top: 2rem;
}

.lp-modern .d-flex {
    display: flex;
}

.lp-modern .align-items-start {
    align-items: flex-start;
}

.lp-modern .me-3 {
    margin-right: 1rem;
}

/* Logo Grid */
.lp-modern .logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin: 2rem 0;
    opacity: 0.6;
}

.lp-modern .logo-grid img {
    height: 32px;
    filter: grayscale(100%);
    transition: all 0.2s;
}

.lp-modern .logo-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA Section */
.lp-modern .cta-section {
    background: linear-gradient(135deg, #1e3a3a 0%, #0f2626 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.lp-modern .cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.lp-modern .cta-section .lead {
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

/* Footer */
.lp-modern footer {
    background: #1f2129;
    color: #d1d5db;
    padding: 2rem 0 2rem 2rem;
}

.lp-modern footer .inner {
    margin-left: 2rem;
}

.lp-modern footer a {
    color: #4ade80;
    font-weight: 600;
}

.lp-modern footer a:hover {
    color: #22c55e;
}

/* Sticky CTA Bar */
.lp-modern .sticky-cta {
    position: fixed;
    top: -200px;
    left: 0;
    right: 0;
    background: #047857;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: top 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.lp-modern .sticky-cta.visible {
    top: 0;
    opacity: 1;
    visibility: visible;
}

.lp-modern .sticky-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lp-modern .sticky-cta-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.lp-modern .sticky-cta-button {
    background: white;
    color: #047857;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
}

.lp-modern .sticky-cta-button:hover {
    background: #f0fdf4;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    color: #047857;
}

@media (max-width: 768px) {
    .lp-modern .sticky-cta .container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .lp-modern .sticky-cta-text {
        font-size: 0.875rem;
    }
}

/* Ceneo Positioning Points */
.lp-modern .ceneo-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-modern .ceneo-points li {
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.lp-modern .ceneo-points li:last-child {
    border-bottom: none;
}

.lp-modern .ceneo-points i {
    color: #bd0053;
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.lp-modern .ceneo-points strong {
    color: #1a1a1a;
    font-size: 1.05rem;
}

.lp-modern .ceneo-points br {
    margin-bottom: 0.25rem;
}

/* Ceneo Highlight Section */
.lp-modern .section-ceneo-highlight {
    background: linear-gradient(135deg, #bd0053 0%, #e91e63 100%);
    padding: 3rem 0;
}

.lp-modern .ceneo-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .lp-modern .ceneo-heading {
        font-size: 2rem;
    }
}

/* Features List */
.lp-modern .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.lp-modern .features-list li {
    padding: 1rem 0;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 500;
}

.lp-modern .features-list i {
    color: #047857;
    margin-right: 1rem;
    font-size: 1.5rem;
}

/* Testimonials */
.lp-modern .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    position: relative;
    transition: all 0.3s;
}

.lp-modern .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.lp-modern .testimonial-quote {
    font-size: 4rem;
    line-height: 1;
    color: #bd0053;
    font-family: Georgia, serif;
    margin-bottom: 1rem;
}

.lp-modern .testimonial-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lp-modern .testimonial-author {
    color: #1a1a1a;
    font-size: 1rem;
}

.lp-modern .testimonial-author strong {
    font-weight: 700;
}
