.hero { position: relative; min-height: 80vh; display: flex; align-items: center; justify-content: center; background-color: var(--color-bg); overflow: hidden; }
.hero-img-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.hero-img-container img { width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 800px; padding: var(--space-8); }
.hero-content h1 { font-size: var(--font-size-4xl); margin-bottom: var(--space-6); letter-spacing: -0.02em; }
@media (min-width: 768px) { .hero-content h1 { font-size: var(--font-size-5xl); } }
.hero-content p { font-size: var(--font-size-lg); margin-bottom: var(--space-8); color: var(--color-gray-900); font-weight: 500; }
.section { padding: var(--space-16) 0; }
@media (min-width: 768px) { .section { padding: var(--space-24) 0; } }
.section-alt { background-color: var(--color-gray-50); }
.grid-split { display: grid; grid-template-columns: 1fr; gap: var(--space-8); align-items: center; }
@media (min-width: 768px) { .grid-split { grid-template-columns: 1fr 1fr; gap: var(--space-12); } .grid-split.reverse .split-content { order: -1; } }
.split-image img { width: 100%; height: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); aspect-ratio: 4/5; object-fit: cover; }
.split-content h2 { font-size: var(--font-size-3xl); margin-bottom: var(--space-4); position: relative; }
@media (min-width: 768px) { .split-content h2 { font-size: var(--font-size-4xl); } }
.split-content h2::after { content: ''; display: block; width: 60px; height: 2px; background-color: var(--color-primary); margin-top: var(--space-4); }
.split-content p { font-size: var(--font-size-base); color: var(--color-gray-800); margin-bottom: var(--space-6); line-height: var(--line-height-loose); }
@media (min-width: 768px) { .split-content p { font-size: var(--font-size-lg); margin-bottom: var(--space-8); } }
.text-center { text-align: center; max-width: 800px; margin: 0 auto; }
.text-center h2::after { content: ''; display: block; width: 60px; height: 2px; background-color: var(--color-primary); margin-top: var(--space-4); margin-left: auto; margin-right: auto; }
.text-center p { font-size: var(--font-size-lg); color: var(--color-gray-800); margin-bottom: var(--space-8); line-height: var(--line-height-loose); margin-top: var(--space-6); }
.newsletter-form { max-width: 500px; margin: var(--space-8) auto 0; display: flex; flex-direction: column; gap: var(--space-4); }
@media (min-width: 600px) { .newsletter-form { flex-direction: row; } }
.newsletter-form .input { flex-grow: 1; }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }