.site-header {
    width: 100%;
    padding: clamp(16px, 3vw, 26px) clamp(18px, 7vw, 90px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    min-width: 0;
    text-decoration: none;
}

.logo {
    width: clamp(46px, 8vw, 58px);
    height: clamp(46px, 8vw, 58px);
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffd76b, #d88900);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    font-size: clamp(24px, 5vw, 30px);
}

.brand h1 {
    margin: 0;
    font-size: clamp(20px, 4vw, 26px);
    letter-spacing: 0.4px;
    line-height: 1.15;
}

.brand span {
    display: block;
    font-size: clamp(12px, 2.5vw, 13px);
    color: var(--footer-text);
    margin-top: 3px;
    line-height: 1.35;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    transition: background 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: var(--nav-bg-hover);
    outline: none;
}



.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown-button {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-button:hover,
.nav-dropdown-button:focus-visible,
.nav-dropdown:hover .nav-dropdown-button,
.nav-dropdown:focus-within .nav-dropdown-button {
    background: var(--nav-bg-hover);
    outline: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 50;
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
    border-radius: 18px;
    background: var(--card-solid);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    color: var(--heading-text);
    background: transparent;
    border: 0;
    border-radius: 12px;
    min-height: 38px;
    padding: 9px 12px;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus-visible,
.main-nav .nav-dropdown-menu a.active {
    color: var(--dark);
    background: var(--soft-green);
}

.hero {
    flex: 1;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(22px, 4vw, 40px);
    align-items: center;
    padding: clamp(24px, 5vw, 55px) clamp(18px, 7vw, 90px) clamp(42px, 7vw, 80px);
}

.hero-card,
.hive-panel {
    min-width: 0;
}

.hero-card {
    background: var(--card);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 52px);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-soft);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 100%;
    background: var(--soft-green);
    color: var(--green);
    padding: 9px 15px;
    border-radius: 999px;
    font-weight: bold;
    font-size: clamp(13px, 2.8vw, 14px);
    margin-bottom: 22px;
    line-height: 1.35;
}

.hero-title {
    margin: 0 0 18px;
    font-size: clamp(18px, 3vw, 28px);
    line-height: 1.25;
    color: var(--heading-text);
}

.hero-title span {
    color: var(--honey-dark);
}

.hero p {
    margin: 0 0 30px;
    font-size: clamp(16px, 3.5vw, 18px);
    line-height: 1.7;
    color: var(--muted-text);
    max-width: 760px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hive-panel {
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, var(--card), var(--panel));
    box-shadow: var(--shadow);
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid var(--border-soft);
}

.hive-illustration {
    background: var(--hero-art-bg);
    border-radius: 24px;
    min-height: clamp(220px, 36vw, 290px);
    display: grid;
    place-items: center;
    color: #fff8e7;
    text-align: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.hive-illustration::before {
    content: "";
    position: absolute;
    inset: -40px;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.15) 87.5%, rgba(255,255,255,0.15)),
        linear-gradient(150deg, rgba(255,255,255,0.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.15) 87.5%, rgba(255,255,255,0.15)),
        linear-gradient(30deg, rgba(255,255,255,0.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.15) 87.5%, rgba(255,255,255,0.15)),
        linear-gradient(150deg, rgba(255,255,255,0.15) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.15) 87.5%, rgba(255,255,255,0.15));
    background-size: 48px 84px;
    opacity: 0.55;
}

.hive-illustration div {
    position: relative;
    z-index: 2;
}

.bee-icon {
    font-size: clamp(54px, 10vw, 76px);
    margin-bottom: 12px;
}

.hive-illustration h3 {
    margin: 0 0 8px;
    font-size: clamp(24px, 5vw, 32px);
    line-height: 1.15;
}

.hive-illustration p {
    margin: 0;
    line-height: 1.5;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.stat {
    background: var(--card-solid);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    border: 1px solid var(--border-warm);
}

.stat strong {
    display: block;
    font-size: clamp(24px, 5vw, 30px);
    color: var(--honey-dark);
    margin-bottom: 5px;
}

.stat span {
    font-size: 13px;
    color: var(--soft-text);
    font-weight: bold;
    line-height: 1.3;
}

.features {
    width: 100%;
    padding: 0 clamp(18px, 7vw, 90px) clamp(42px, 7vw, 70px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.feature {
    background: var(--card);
    border-radius: 22px;
    padding: clamp(22px, 4vw, 28px);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.feature .icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--soft-green);
    font-size: 26px;
    margin-bottom: 16px;
}

.feature h3 {
    color: var(--amber);
    margin: 0 0 10px;
    font-size: 21px;
}

.feature p {
    color: var(--muted-text);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 1050px) {
    

.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown-button {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-button:hover,
.nav-dropdown-button:focus-visible,
.nav-dropdown:hover .nav-dropdown-button,
.nav-dropdown:focus-within .nav-dropdown-button {
    background: var(--nav-bg-hover);
    outline: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 50;
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
    border-radius: 18px;
    background: var(--card-solid);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    color: var(--heading-text);
    background: transparent;
    border: 0;
    border-radius: 12px;
    min-height: 38px;
    padding: 9px 12px;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus-visible,
.main-nav .nav-dropdown-menu a.active {
    color: var(--dark);
    background: var(--soft-green);
}

.hero {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        align-items: stretch;
        flex-direction: column;
    }

    .brand {
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown {
        flex: 1 1 calc(50% - 10px);
    }

    .nav-dropdown-button {
        width: 100%;
    }

    .nav-dropdown-menu {
        left: 0;
        right: 0;
        min-width: 100%;
    }

    

.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown-button {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--nav-bg);
    border: 1px solid var(--nav-border);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-dropdown-button:hover,
.nav-dropdown-button:focus-visible,
.nav-dropdown:hover .nav-dropdown-button,
.nav-dropdown:focus-within .nav-dropdown-button {
    background: var(--nav-bg-hover);
    outline: none;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 50;
    min-width: 280px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 10px;
    border-radius: 18px;
    background: var(--card-solid);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .nav-dropdown-menu a {
    width: 100%;
    justify-content: flex-start;
    color: var(--heading-text);
    background: transparent;
    border: 0;
    border-radius: 12px;
    min-height: 38px;
    padding: 9px 12px;
}

.main-nav .nav-dropdown-menu a:hover,
.main-nav .nav-dropdown-menu a:focus-visible,
.main-nav .nav-dropdown-menu a.active {
    color: var(--dark);
    background: var(--soft-green);
}

.hero {
        padding-top: 22px;
    }

    .hero-card {
        border-radius: 22px;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 460px) {
    .brand {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown {
        flex: 1 1 100%;
    }

    .actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1500px) {
    .site-header,
    .hero,
    .features,
    .site-footer {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }
}
