/* Hero */
.hero { 
    padding: 140px 0 120px; 
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

/* Wave Bottom Edge for Static Hero */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--white);
    clip-path: ellipse(70% 100% at 50% 100%);
}

/* Decorative blob */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBlob 8s ease-in-out infinite;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 20px) scale(1.1); }
}

.dark .hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.dark .hero::after {
    background: var(--white);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content h1 { 
    font-size: 48px; 
    line-height: 1.15; 
    margin-bottom: 20px; 
    font-weight: 800;
    letter-spacing: -0.5px;
}
.hero-content h1 span { 
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content .subtitle { 
    font-size: 18px; 
    color: var(--primary-dark); 
    font-weight: 600; 
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hero-content .subtitle::before {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.hero-content p { 
    font-size: 17px; 
    margin-bottom: 32px; 
    max-width: 500px; 
    line-height: 1.7;
    color: var(--text-body);
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; }

/* Hero Image */
.hero-image {
    width: 100%;
    max-width: 540px;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}
.hero-image:hover {
    transform: scale(1.02);
}

/* Section Header */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-header h2 { 
    font-size: 36px; 
    margin-bottom: 16px; 
    font-weight: 700;
    letter-spacing: -0.3px;
}
.section-header p { 
    font-size: 17px; 
    line-height: 1.7;
    color: var(--text-body);
}

/* Features */
.features { padding: 100px 0; background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-item {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.feature-item:hover { 
    background: var(--bg-card);
    border-color: var(--border);
    box-shadow: var(--shadow); 
    transform: translateY(-2px);
}
.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon i { color: white; font-size: 22px; }
.feature-content h3 { 
    font-size: 17px; 
    margin-bottom: 8px; 
    font-weight: 600;
    color: var(--text-dark);
}
.feature-content p { font-size: 14px; line-height: 1.6; color: var(--text-body); }

/* Industries */
.industries { padding: 100px 0; background: var(--bg); }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}
.industry-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
    border-color: var(--primary);
}
.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s ease;
}
.industry-icon i { font-size: 24px; color: var(--primary); transition: all 0.3s ease; }
.industry-card:hover .industry-icon { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); 
}
.industry-card:hover .industry-icon i { color: white; }
.industry-card h3 { 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--text-dark); 
    line-height: 1.4; 
}

/* Screenshots */
.screenshots { padding: 100px 0; background: var(--bg); }
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.screenshot-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    background: var(--bg-card);
}
.screenshot-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}
.screenshot-item p {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .screenshots-grid { grid-template-columns: 1fr; }
}
