/* ===== Hero Section ===== */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    gap: 3rem;
}
.hero-content { max-width: 560px; }
.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1a2744;
    margin-bottom: 1.25rem;
}
.hero-heading .accent { color: #2d6a7a; }
.hero-heading .bold { font-weight: 800; }
.hero-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6577;
    margin-bottom: 2rem;
    max-width: 480px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Browser Frame */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
}
.browser-frame {
    background: #1a1a1a;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
}
.browser-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #28c840; }
.browser-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== Responsive: Hero ===== */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        padding: 4rem 2rem 5rem;
        gap: 4rem;
    }
    .hero-content { flex: 1; }
    .hero-heading { font-size: 3.25rem; }
    .hero-image-wrapper { flex: 1; }
}
@media (min-width: 1024px) {
    .hero {
        padding: 4rem 3rem 6rem;
        gap: 5rem;
    }
    .hero-heading { font-size: 3.5rem; }
}
