/* css/landing-page.css - v18 */
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}
.container {
    width: 90%;
    max-width: 1600px; 
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Header --- */
.landing-header { background-color: #fff; padding: 15px 0; box-shadow: 0 2px 4px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.landing-header .container { 
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.logo { 
    grid-column: 1;
    justify-self: start;
    display: flex; 
    align-items: center; 
}
.header-title {
    grid-column: 2;
    justify-self: center;
    font-size: 1.5em; 
    font-weight: 500; 
    color: #005A9C; 
}
.logo-image-header { height: 80px; }
.landing-nav { 
    grid-column: 3;
    justify-self: end;
    display: flex; 
    align-items: center;
    gap: 15px;
}

/* --- Hero Section --- */
.hero-section { background: linear-gradient(135deg, #005A9C, #007bff, #0056b3); color: white; padding: 100px 0; text-align: center; }
.hero-section h1 { font-size: 3.2em; margin-bottom: 25px; font-weight: 700; line-height: 1.2; }
.hero-section .subtitle { font-size: 1.3em; font-weight: 300; max-width: 800px; margin: 0 auto 35px auto; line-height: 1.5; }

.hero-benefits { display: flex; justify-content: center; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.benefit-item { display: flex; align-items: center; gap: 8px; font-size: 1.1em; font-weight: 500; }
.benefit-item i { color: #28a745; }

.cta-buttons { margin: 40px 0 20px 0; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.trial-note { font-size: 0.95em; opacity: 0.9; margin-top: 15px; }

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.4em; }
    .hero-benefits { flex-direction: column; align-items: center; gap: 15px; }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* --- Features Section --- */
.features-section { padding: 100px 0; background-color: #f8f9fa; }
.features-section h2, .app-preview-section h2, .pricing-section h2, .testimonials-section h2 { text-align: center; font-size: 2.4em; margin-bottom: 60px; color: #343a40; font-weight: 600; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 50px; margin-top: 60px; }
.feature-item { text-align: center; padding: 30px 20px; background: white; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.feature-item:hover { transform: translateY(-5px); }
.feature-icon { font-size: 3em; color: #007bff; margin-bottom: 25px; }
.feature-item h3 { font-size: 1.5em; margin-bottom: 15px; color: #333; font-weight: 600; }
.feature-item p { color: #6c757d; line-height: 1.6; font-size: 1.05em; }

/* --- App Preview Section --- */
.app-preview-section { padding: 80px 0; }
.preview-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 50px; 
    margin-top: 40px; 
    align-items: start; 
}
.preview-item { 
    text-align: center;
}
.preview-item img { 
    width: 100%; 
    border-radius: 8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
    margin-top: 20px;
}
.preview-text h4 { font-size: 1.5em; margin-bottom: 8px; color: #333; }
.preview-text p { font-size: 1em; color: #6c757d; margin-bottom: 0; }

@media (max-width: 992px) {
    .preview-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

/* --- Testimonials Section --- */
.testimonials-section { padding: 80px 0; background-color: #fff; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; }
.testimonial-item { background: #f8f9fa; padding: 30px; border-radius: 12px; text-align: center; }
.stars { color: #ffc107; font-size: 1.5em; margin-bottom: 20px; }
.testimonial-item p { font-style: italic; font-size: 1.1em; margin-bottom: 20px; line-height: 1.6; }
.testimonial-author { font-weight: 600; color: #007bff; }

/* --- Pricing Section --- */
.pricing-section { padding: 100px 0; background-color: #f8f9fa; }

.value-props { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin: 50px 0; }
.value-item { text-align: center; padding: 25px; background: white; border-radius: 10px; }
.value-item i { font-size: 2.5em; color: #28a745; margin-bottom: 15px; }
.value-item h4 { font-size: 1.3em; margin-bottom: 10px; color: #333; }
.value-item p { color: #6c757d; }
/* [NEW] Styles for the promo banner */
.promo-banner {
    background-color: #e0f2f1; /* A light teal/green */
    color: #004d40; /* Dark green text */
    border: 1px solid #b2dfdb;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    margin: 0 auto 40px auto;
    max-width: 800px;
    font-size: 1.1em;
}
.promo-banner .promo-highlight {
    animation: colorBlink 2s infinite;
    font-weight: 700;
}
@keyframes colorBlink {
    0%, 100% { color: #d32f2f; opacity: 1; }
    25% { color: #f57c00; opacity: 0.8; }
    50% { color: #388e3c; opacity: 1; }
    75% { color: #1976d2; opacity: 0.8; }
}
.promo-banner .promo-code {
    background-color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px dashed #00796b;
    margin-left: 5px;
    color: #28a745;
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; justify-content: center; }
.pricing-box {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 2px solid transparent;
    background-clip: padding-box;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 10px rgba(0,0,0,0.04);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, rgba(0,123,255,0.05), rgba(40,167,69,0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.pricing-box:hover::before {
    opacity: 1;
}

.pricing-box:hover { 
    transform: translateY(-15px) scale(1.02); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 5px 20px rgba(0,123,255,0.1);
    border-color: rgba(0,123,255,0.2);
}

.pricing-box.most-popular { 
    border: 2px solid #28a745;
    background: linear-gradient(145deg, #ffffff, #f0fff4);
    position: relative;
    transform: scale(1.05);
}

.pricing-box.most-popular:hover {
    transform: translateY(-15px) scale(1.07);
    box-shadow: 0 25px 60px rgba(40,167,69,0.2), 0 10px 30px rgba(40,167,69,0.1);
}
.popular-badge {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 25px;
    font-size: 0.75em;
    font-weight: 700;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 4px 15px rgba(40,167,69,0.3);
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}
.pricing-logo { 
    height: 90px; 
    width: 90px; 
    margin: 0 auto 30px auto; 
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.pricing-box:hover .pricing-logo {
    transform: scale(1.1) rotate(5deg);
}
.pricing-box h3 { 
    font-size: 1.6em; 
    color: #333; 
    margin: 0 0 15px 0; 
    font-weight: 600;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pricing-box .description { font-size: 0.95em; color: #6c757d; margin-bottom: 20px; min-height: 40px; }
.pricing-box .price { 
    font-size: 3.2em; 
    font-weight: 700; 
    background: linear-gradient(135deg, #007bff, #0056b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.pricing-box .price span { font-size: 0.4em; font-weight: 400; color: #6c757d; margin-left: 5px; }
.plan-features { 
    text-align: left; 
    font-size: 1em; 
    color: #555; 
    margin: 25px 0; 
    line-height: 2;
    background: rgba(248,249,250,0.8);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #007bff;
    position: relative;
    z-index: 1;
}
.pricing-box .btn { 
    margin-top: auto;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0,123,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    text-decoration: none;
    display: inline-block;
}

.pricing-box .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
    text-decoration: none;
    color: white;
}

.pricing-box.most-popular .btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    box-shadow: 0 6px 20px rgba(40,167,69,0.3);
}

.pricing-box.most-popular .btn:hover {
    box-shadow: 0 8px 25px rgba(40,167,69,0.4);
    color: white;
}

/* --- Buttons --- */
.btn { display: inline-block; padding: 10px 20px; text-decoration: none; border-radius: 5px; font-weight: 500; transition: background-color 0.2s, transform 0.2s, border-color 0.2s; cursor: pointer; text-align: center; border: 1px solid transparent; }
.btn-large { padding: 15px 35px; font-size: 1.1em; }
.btn-primary { background-color: #0056b3; color: white; border-color: #0056b3; }
.btn-primary:hover { background-color: #004085; border-color: #004085;}
.btn-secondary { background-color: transparent; color: #007bff; border-color: #007bff; }
.btn-secondary:hover { background-color: #007bff; color: white; border-color: #007bff; }

/* Hero section secondary buttons */
.hero-section .btn-secondary { background-color: rgba(255,255,255,0.1); color: white; border-color: rgba(255,255,255,0.3); }
.hero-section .btn-secondary:hover { background-color: rgba(255,255,255,0.2); color: white; border-color: rgba(255,255,255,0.5); }
.btn-block { display: block; width: 100%; box-sizing: border-box; }

/* --- Final CTA Section --- */
.final-cta-section { background: linear-gradient(135deg, #28a745, #20c997); color: white; padding: 80px 0; text-align: center; }
.final-cta-section h2 { font-size: 2.5em; margin-bottom: 20px; font-weight: 600; }
.final-cta-section p { font-size: 1.2em; margin-bottom: 30px; }
.guarantee { font-size: 0.95em; margin-top: 20px; opacity: 0.9; }

/* --- Industry Section --- */
.industry-section { padding: 80px 0; background-color: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; margin-top: 50px; }
.industry-item { background: #f8f9fa; padding: 40px 30px; border-radius: 12px; text-align: center; }
.industry-icon { font-size: 3em; color: #007bff; margin-bottom: 25px; }
.industry-item h3 { font-size: 1.5em; margin-bottom: 15px; color: #333; }
.industry-item p { color: #6c757d; margin-bottom: 20px; line-height: 1.6; }
.industry-features { list-style: none; padding: 0; text-align: left; }
.industry-features li { padding: 5px 0; color: #28a745; font-weight: 500; }

/* --- FAQ Section --- */
.faq-section { padding: 80px 0; background-color: #f8f9fa; }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; margin-top: 50px; }
.faq-item { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.faq-item h4 { color: #333; margin-bottom: 15px; font-size: 1.2em; }
.faq-item p { color: #6c757d; line-height: 1.6; margin: 0; }
.faq-link { color: #007bff; text-decoration: none; font-weight: 500; }
.faq-link:hover { text-decoration: underline; }

/* --- Overtime Calculator Section --- */
.overtime-calculator-section { padding: 80px 0; background-color: #fff; }
.calculator-intro { text-align: center; font-size: 1.2em; color: #6c757d; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }
.overtime-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin: 50px 0; }
.overtime-type { background: #f8f9fa; padding: 30px 25px; border-radius: 12px; text-align: center; }
.overtime-icon { font-size: 2.5em; color: #28a745; margin-bottom: 20px; }
.overtime-type h4 { color: #333; margin-bottom: 15px; font-size: 1.3em; }
.overtime-type p { color: #6c757d; line-height: 1.6; margin: 0; }
.calculator-cta { text-align: center; margin-top: 60px; padding: 40px; background: linear-gradient(135deg, #f8f9fa, #e9ecef); border-radius: 15px; }
.calculator-cta h3 { color: #333; margin-bottom: 15px; }
.calculator-cta p { color: #6c757d; margin-bottom: 25px; }

/* --- Footer --- */
.landing-footer { background-color: #2c3e50; color: #bdc3c7; padding: 50px 0 20px 0; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 30px; }
.footer-section h4 { color: white; margin-bottom: 20px; font-size: 1.2em; }
.footer-section ul { list-style: none; padding: 0; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: #bdc3c7; text-decoration: none; transition: color 0.2s; }
.footer-section ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid #34495e; padding-top: 20px; text-align: center; }