﻿/* Hero Section */
.landing-hero {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 0;
}

.landing-hero h1 {     color: #fff;
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.landing-hero .tagline {      color: #fff; 
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.landing-hero .power-statement {
    background: rgba(255,255,255,0.2);
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 20px;
    border: 2px solid white;
}

.content-wrapper{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Feature Boxes */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-box {
    background: white;
    padding: 30px;
    border-top: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #e74c3c;
}

.feature-box-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-box h3 {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.feature-box p {
    color: #555;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-top: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.service-card h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.service-card ul {
    margin: 20px 0;
}

.service-card li {
    padding: 10px 0;
    color: #555;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.use-case {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.use-case h4 {
    color: #e74c3c;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.use-case p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}

/* Info Box */
.info-box {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.info-box h3 {
    color: #856404;
    margin-bottom: 15px;
    font-size: 1.3em;
}

/* Highlight Box */
.highlight-box {
    background: #ffe6e6;
    border-left: 4px solid #e74c3c;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.highlight-box h3 {
    color: #c0392b;
    margin-bottom: 15px;
}

/* QR Code Section */
.qr-section {
    background: white;
    padding: 40px;
    border-top: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.qr-location {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.qr-location-icon {
    font-size: 2em;
    margin-bottom: 10px;
}

.qr-location h4 {
    color: #2c3e50;
    font-size: 1em;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-top: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);    
    margin: 40px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.benefit-icon {
    min-width: 40px;
    height: 40px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.benefit-content h4 {
    color: #2c3e50;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #555;
    font-size: 0.95em;
    margin: 0;
}

/* CTA Button */
.cta-primary {
    background: #e74c3c;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    display: inline-block;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #c0392b;
}

/* Responsive */
@media (max-width: 968px) {
    .feature-boxes,
    .use-cases-grid,
    .benefits-grid,
    .qr-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-hero h1 {
        font-size: 2em;
    }

    .landing-hero .tagline {
        font-size: 1.1em;
    }
}