.hero {
    position: relative;
    padding: 120px 0;
    min-height: 999px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-photo-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-photo-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.55) 0%, rgba(2, 6, 23, 0.88) 100%);
}

.hero-slide-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity var(--duration-medium) ease;
}

.hero-slide-photo.is-active {
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero-slide {
    display: none;
}

.hero-slide.is-active {
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 560px;
    margin: 0 auto 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hero-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-glass);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--duration-fast) ease, transform var(--duration-fast) ease;
}

.hero-dot.is-active {
    background: var(--orange-500);
    transform: scale(1.3);
}

.contact-card {
    max-width: 640px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
}

.product-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.product-card-image img,
.product-card-image .placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-link-wrap {
    display: contents;
    color: inherit;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px 28px 16px;
}

.product-card-footer {
    padding: 0 28px 24px;
}

.product-card-footer .btn {
    width: 100%;
}

.product-card-tagline {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card-summary {
    flex-grow: 1;
    font-size: 0.92rem;
}

.product-card-link {
    margin-top: 16px;
    font-weight: 600;
    color: var(--orange-400);
    font-size: 0.9rem;
}

.about-teaser {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 900px) {
    .about-teaser {
        grid-template-columns: 1fr;
    }
}

.about-teaser-image {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.about-teaser-image img {
    max-width: 220px;
    max-height: 160px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.about-teaser-pillars {
    display: grid;
    gap: 16px;
}

.about-pillar {
    padding: 18px 20px;
}

.about-pillar-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-card {
    text-align: center;
}

.team-card-photo-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
}

.team-card-photo-wrap img,
.team-card-photo-wrap .placeholder-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.team-card-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.team-card-role {
    color: var(--orange-400);
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero {
        padding: 90px 0;
        min-height: 780px;
    }
}

/* Order modal */
.order-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(2, 6, 23, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.order-modal-overlay[hidden] {
    display: none;
}

.order-modal {
    position: relative;
    max-width: 440px;
    width: 100%;
    padding: 32px;
    text-align: center;
}

.order-modal h3 {
    margin-bottom: 12px;
}

.order-modal p {
    margin-bottom: 16px;
}

.order-modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}

.order-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--surface-glass);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
}
