/* ===== TOP BAR ===== */
.top-bar {
    background: var(--color-primary-dark);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    font-size: 0.813rem;
    color: rgba(255,255,255,0.9);
}
.top-bar-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-right a,
.top-bar-left a { color: rgba(255,255,255,0.9); transition: color 0.2s; }
.top-bar-right a:hover,
.top-bar-left a:hover { color: #fff; }
.top-divider { opacity: 0.4; }
.lang-switch { display: flex; gap: 8px; }
.lang-switch a { padding: 2px 8px; border-radius: var(--radius-sm); color: var(--color-primary); }
.lang-switch a.active { background: rgba(255,255,255,0.15); color: #fff; }

@media (max-width: 768px) {
    .top-bar { display: none; }
}

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gap);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}
.header-logo .logo-img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    transition: height 0.25s ease;
}
.site-header.scrolled .header-logo .logo-img { height: 36px; }
@media (max-width: 640px) {
    .header-logo .logo-img { height: 36px; max-width: 160px; }
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.header-nav { display: flex; }
.nav-menu { display: flex; gap: clamp(20px, 2vw, 32px); }
.nav-menu .nav-item { position: relative; }
.nav-menu .nav-link {
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 0;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nav-menu .nav-link:hover,
.nav-menu .nav-item.current-menu-item .nav-link { color: var(--color-primary); }
.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--color-primary);
    transition: width 0.25s;
}
.nav-menu .nav-link:hover::after,
.nav-menu .nav-item.current-menu-item .nav-link::after { width: 100%; }

/* === Mega dropdown === */
.nav-caret { transition: transform 0.25s ease; opacity: 0.65; }
.nav-item--has-children:hover .nav-caret,
.nav-item--has-children.open .nav-caret { transform: rotate(-180deg); opacity: 1; }

.nav-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 880px;
    max-width: 92vw;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 36px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 120;
}
.nav-mega--narrow {
    min-width: 460px;
    grid-template-columns: 1fr 1fr;
}
.nav-item--has-children:hover .nav-mega,
.nav-item--has-children:focus-within .nav-mega,
.nav-item--has-children.open .nav-mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
/* invisible bridge so hover doesn't drop when moving from link to panel */
.nav-item--has-children::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 14px;
}
.nav-mega__col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.nav-mega__title {
    display: block;
    font-size: 0.688rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--color-border);
}
.nav-mega__link {
    display: block;
    padding: 8px 10px;
    margin: 0 -10px;
    font-size: 0.875rem;
    color: var(--color-text);
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s, padding-left 0.18s;
}
.nav-mega__link:hover {
    color: var(--color-primary);
    background: rgba(14, 122, 71, 0.06);
    padding-left: 14px;
}
.nav-mega__link--featured {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 1200px) {
    .nav-mega { min-width: 720px; padding: 24px; gap: 20px 24px; }
    .nav-mega--narrow { min-width: 420px; }
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 1024px) {
    .header-nav, .header-actions .btn, .header-email, .header-divider, .header-actions .lang-switch { display: none; }
    .mobile-toggle { display: flex; }
}

/* ===== HERO ===== */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-h) - var(--topbar-h));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}
/* Compact hero: 2/5 of original height */
.hero-section--compact {
    min-height: 0;
    height: 40vh;
    min-height: 320px;
    max-height: 520px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg video, .hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content-wrap {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 40px var(--gap);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.hero-text { color: var(--color-white); text-align: left; max-width: 620px; }
.hero-section--compact .hero-text h1 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}
.hero-section--compact .hero-text p {
    font-size: 0.938rem;
    opacity: 0.92;
    margin-bottom: 18px;
    max-width: 520px;
    line-height: 1.55;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-section--compact .hero-buttons .btn { padding: 10px 20px; font-size: 0.875rem; }

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
/* Video slide: crop to middle 30%-70% of the source video.
   Wrapper height is 100% of hero; we expand video to 250% height
   (1 / 0.4 = 2.5) then translate up by 30% of source = 75% of hero height,
   so the 30%-70% band is centered in the visible frame. */
.hero-video-mask {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-video-mask video {
    position: absolute;
    left: 0; right: 0;
    top: -75%;
    height: 250%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Nav dots */
.hero-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-dots button {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    border: none;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.3s, width 0.3s;
    padding: 0;
}
.hero-dots button.active {
    background: #fff;
    width: 44px;
}

/* Nav arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.hero-arrow:hover { background: rgba(255,255,255,0.28); }
.hero-arrow--prev { left: 16px; }
.hero-arrow--next { right: 16px; }

@media (max-width: 768px) {
    .hero-section--compact { height: auto; min-height: 280px; max-height: none; }
    .hero-content-wrap { padding: 30px 16px; }
    .hero-arrow { width: 36px; height: 36px; }
    .hero-arrow--prev { left: 8px; }
    .hero-arrow--next { right: 8px; }
}

/* ===== QUOTE MODAL ===== */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.quote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.quote-modal {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: 0 32px 80px rgba(0,0,0,0.2);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s;
}
.quote-modal-overlay.active .quote-modal {
    transform: translateY(0) scale(1);
}
.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.quote-modal-close:hover {
    background: var(--color-border);
    color: var(--color-text);
}
.quote-modal-header {
    padding: 36px 36px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 32px 36px 24px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    color: #fff;
}
.quote-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.quote-modal-header p {
    font-size: 0.875rem;
    opacity: 0.85;
}
.quote-modal-form {
    padding: 28px 36px 36px;
}
.quote-modal-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}
.quote-modal-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.quote-modal-form label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
}
.quote-modal-form input,
.quote-modal-form textarea,
.quote-modal-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--color-bg-alt);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    color: var(--color-text);
}
.quote-modal-form input::placeholder,
.quote-modal-form textarea::placeholder {
    color: #9CA3AF;
}
.quote-modal-form input:focus,
.quote-modal-form textarea:focus,
.quote-modal-form select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(20,156,92,0.1);
}
.quote-modal-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.quote-modal-form textarea {
    resize: vertical;
    min-height: 72px;
    margin-bottom: 4px;
}
.quote-modal-form .form-submit {
    width: 100%;
    padding: 14px 20px;
    margin-top: 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: opacity 0.25s, transform 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.quote-modal-form .form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}
.quote-modal-form .form-submit:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .quote-modal {
        max-width: 100%;
        border-radius: var(--radius-lg);
    }
    .quote-modal-header { padding: 24px 20px 20px; }
    .quote-modal-form { padding: 20px; }
    .quote-modal-form .form-row { grid-template-columns: 1fr; }
}

/* ===== COMPANY PROFILE + CATEGORIES ===== */
.section-profile {
    padding: 80px 0;
    background: var(--color-bg-alt);
}
.profile-slogan {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.profile-text {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    color: var(--color-text-light);
    line-height: 1.8;
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--gap);
}
.category-grid--6 {
    grid-template-columns: repeat(3, 1fr);
}
.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    display: block;
}
.category-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
    transition: background 0.3s;
}
.category-card:hover img { transform: scale(1.05); }
.category-card:hover::after { background: linear-gradient(to top, var(--color-primary) 0%, rgba(20,156,92,0.35) 60%); }
.category-label {
    position: absolute;
    bottom: 36px; left: 20px;
    z-index: 2;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.category-sub {
    position: absolute;
    bottom: 16px; left: 20px; right: 20px;
    z-index: 2;
    color: rgba(255,255,255,0.92);
    font-size: 0.813rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 900px) {
    .category-grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .category-grid--6 { grid-template-columns: 1fr; }
}

/* ===== MATRIX (3-dimension product browser) ===== */
.section-matrix {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, #fff 100%);
}
.matrix-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 40px 0 32px;
}
.matrix-tab {
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: inherit;
}
.matrix-tab__num {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.5;
    transition: opacity 0.25s;
}
.matrix-tab__label {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}
.matrix-tab__hint {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 4px 10px;
    background: var(--color-bg-alt);
    border-radius: 999px;
    font-weight: 500;
}
.matrix-tab:hover { border-color: var(--color-primary); }
.matrix-tab.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: 0 10px 24px rgba(14,122,71,0.25);
}
.matrix-tab.active .matrix-tab__num { color: rgba(255,255,255,0.8); opacity: 1; }
.matrix-tab.active .matrix-tab__label { color: #fff; }
.matrix-tab.active .matrix-tab__hint { background: rgba(255,255,255,0.18); color: #fff; }

.matrix-panels { position: relative; }
.matrix-panel {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    animation: matrixFadeIn 0.35s ease;
}
.matrix-panel.active { display: grid; }
@keyframes matrixFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.matrix-chip {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    transition: all 0.2s ease;
}
.matrix-chip strong {
    display: block;
    color: var(--color-dark);
    font-size: 0.985rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.matrix-chip span.matrix-chip__desc,
.matrix-chip > span:not(.matrix-chip__icon) {
    display: block;
    color: var(--color-text-light);
    font-size: 0.813rem;
    line-height: 1.55;
}
.matrix-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(14, 122, 71, 0.08);
    font-size: 1.25rem;
    margin-bottom: 10px;
    transition: background 0.2s;
}
.matrix-chip:hover .matrix-chip__icon { background: rgba(14, 122, 71, 0.16); }
.matrix-chip:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}
.matrix-chip:hover strong { color: var(--color-primary); }

@media (max-width: 900px) {
    .matrix-tabs { grid-template-columns: 1fr; }
    .matrix-panel { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .matrix-panel { grid-template-columns: 1fr; }
}

/* ===== SERVICES ===== */
.section-services { padding: 80px 0; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap);
}
.service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--color-primary);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(20,156,92,0.12);
}
.service-icon {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(20,156,92,0.08) 0%, rgba(29,185,110,0.15) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    transition: transform 0.3s, background 0.3s;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(20,156,92,0.12) 0%, rgba(29,185,110,0.22) 100%);
}
.service-icon img { width: 32px; height: 32px; }
.service-icon-placeholder {
    width: 72px; height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(20,156,92,0.08) 0%, rgba(29,185,110,0.15) 100%);
    border-radius: 50%;
}
.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-text);
}
.service-card p {
    color: var(--color-text-light);
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.service-link:hover { gap: 8px; }

/* Service card with image */
.service-card--has-image {
    padding: 0;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.service-card--has-image .service-card__image {
    height: 180px;
    overflow: hidden;
}
.service-card--has-image .service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.service-card--has-image:hover .service-card__image img {
    transform: scale(1.05);
}
.service-card--has-image .service-card__content {
    padding: 28px 28px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.service-card--has-image .service-icon {
    margin: 0 0 16px;
    width: 56px;
    height: 56px;
}
.service-card--has-image .service-link {
    margin-top: auto;
}

/* ===== PARTNERS ===== */
.section-partners {
    padding: 60px 0;
    background: var(--color-bg-alt);
    overflow: hidden;
}
.section-partners .section-title {
    margin-bottom: 32px;
}
.partners-scroll {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}
.partners-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll-partners 42s linear infinite;
}
.partners-track img {
    display: block;
    height: 56px;
    width: 150px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(1) opacity(0.68);
    transition: filter 0.3s;
}
.partners-track img:hover { filter: grayscale(0) opacity(1); }
.partner-placeholder {
    flex-shrink: 0;
    width: 120px;
    height: 52px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.partner-placeholder span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: -0.5px;
}
.partner-placeholder:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(20,156,92,0.1);
}
@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

/* ===== TESTIMONIALS ===== */
.section-testimonials { padding: 80px 0; }
.testimonial-slider {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
}
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card {
    min-width: 100%;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    background: var(--color-bg-alt);
    border-radius: var(--radius-xl);
    border-left: 4px solid var(--color-primary);
}
.testimonial-quote-mark {
    position: absolute;
    top: 20px;
    left: 32px;
    color: var(--color-primary);
    opacity: 0.15;
}
.testimonial-card .avatar {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}
.testimonial-avatar-placeholder {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-card blockquote {
    font-size: 1.063rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--color-text);
}
.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}
.testimonial-card .company-name {
    color: var(--color-text-light);
    font-size: 0.813rem;
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.slider-dots .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}
.slider-dots .dot.active { background: var(--color-primary); transform: scale(1.2); }
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}
.slider-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    color: var(--color-text);
}
.slider-arrow:hover {
    border-color: var(--color-primary);
    background: rgba(20,156,92,0.05);
    color: var(--color-primary);
}

/* ===== GLOBAL MARKET ===== */
.section-global {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}
.section-global::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
}
.section-global .section-title { color: #fff; }
.section-global .section-subtitle { color: rgba(255,255,255,0.85); }
.global-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.global-content {
    min-width: 0;
}
.global-content .section-title,
.global-content .section-subtitle {
    text-align: left;
}
.global-content .section-subtitle {
    margin-bottom: 32px;
}
.global-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
}
#world-map {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    background: transparent;
}
#world-map.jvm-container {
    background: transparent !important;
}
#world-map .jvm-zoom-btn,
#world-map .jvm-tooltip {
    display: none !important;
}
#world-map svg {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
}
.global-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
}
.stat-item {
    padding: 16px 12px;
}
.stat-item .stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    display: block;
}
.stat-item .stat-label {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-top: 2px;
    display: block;
}

/* ===== NEWS ===== */
.section-news { padding: 80px 0; }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--gap);
}
.news-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.news-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.expo-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(14, 122, 71, 0.95);
    color: #fff;
    font-size: 0.688rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.expo-tag--upcoming { background: rgba(217, 119, 6, 0.95); }
.expo-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}
.expo-location {
    font-size: 0.813rem;
    color: var(--color-text-light);
    font-weight: 500;
}
.expo-card .news-title { font-size: 1.125rem; line-height: 1.35; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-image img { transform: scale(1.05); }
.news-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    background: linear-gradient(135deg, #0E7A47 0%, #149C5C 60%, #1DB96E 100%);
}
.news-placeholder--cert {
    background: linear-gradient(135deg, #0E7A47 0%, #149C5C 60%, #1DB96E 100%);
}
.news-placeholder--expo {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D3748 60%, #4A5568 100%);
}
.news-placeholder--eco {
    background: linear-gradient(135deg, #065F46 0%, #047857 60%, #10B981 100%);
}
.news-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-date {
    font-size: 0.813rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: block;
}
.news-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title a { transition: color 0.2s; }
.news-title a:hover { color: var(--color-primary); }
.news-excerpt {
    color: var(--color-text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex: 1;
}
.news-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: gap 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.news-link:hover { gap: 8px; }

/* ===== CTA SECTION ===== */
.section-cta {
    padding: 72px 0;
    background: linear-gradient(135deg, var(--color-bg-alt) 0%, #e8f5e9 100%);
    text-align: center;
    position: relative;
}
.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.3;
}
.section-cta h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-cta p {
    color: var(--color-text-light);
    margin-bottom: 28px;
    font-size: 1rem;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.85);
}
.footer-main { padding: 60px 0 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-img {
    display: block;
    height: 48px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    /* logo 是深色背景上展示，必要时反白 */
    filter: brightness(0) invert(1);
    opacity: 0.95;
}
.footer-logo .logo-mark-sm {
    width: 32px; height: 32px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 0.875rem;
}
.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all 0.25s;
}
.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    font-size: 0.875rem;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--color-primary-light); }
.footer-contact-list li {
    font-size: 0.875rem;
    margin-bottom: 12px;
    opacity: 0.75;
    line-height: 1.5;
}
.footer-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 16px;
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    color: var(--color-primary-light);
    font-size: 0.813rem;
    font-weight: 500;
    transition: all 0.25s;
}
.footer-download:hover { background: var(--color-primary); color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.813rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== FLOATING CONTACT ===== */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.float-btn {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.float-btn::before {
    content: attr(data-float-label);
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translate(8px, -50%);
    opacity: 0;
    pointer-events: none;
    background: var(--color-dark);
    color: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    font-size: 0.813rem;
    font-weight: 600;
    line-height: 1.2;
    max-width: 160px;
    padding: 7px 10px;
    white-space: nowrap;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.float-btn:hover,
.float-btn:focus-visible {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.float-btn:hover::before,
.float-btn:focus-visible::before {
    opacity: 1;
    transform: translate(0, -50%);
}
.float-email { background: var(--color-primary); }
.float-phone { background: var(--color-primary); }
.float-whatsapp { background: #25D366; }
.float-top {
    background: var(--color-dark);
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.float-top.visible { opacity: 1; pointer-events: auto; }

/* ===== NAV OVERLAY ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.nav-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}
body.nav-open { overflow: hidden; }

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE SUPPLEMENTS ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .global-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .global-content .section-title,
    .global-content .section-subtitle {
        text-align: center;
    }
    .global-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-section { min-height: auto; }
    .hero-section--compact .hero-content-wrap { padding: 24px 16px; }
    .hero-section--compact .hero-text h1 { font-size: 1.35rem; margin-bottom: 8px; }
    .hero-section--compact .hero-text p { font-size: 0.875rem; margin-bottom: 14px; }
    .hero-section--compact .hero-buttons { gap: 8px; }
    .hero-section--compact .hero-buttons .btn { padding: 9px 16px; font-size: 0.813rem; }
    .hero-section:not(.hero-section--compact) .hero-content-wrap { padding: 60px 16px; }
    .hero-section:not(.hero-section--compact) .hero-text h1 { font-size: 1.75rem; }
    .hero-section:not(.hero-section--compact) .hero-buttons { flex-direction: column; }
    .hero-section:not(.hero-section--compact) .hero-buttons .btn { width: 100%; }

    .section-profile, .section-services, .section-partners,
    .section-testimonials, .section-global, .section-news { padding: 60px 0; }

    .services-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .news-grid { grid-template-columns: 1fr; }
    .global-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .global-content .section-title,
    .global-content .section-subtitle {
        text-align: center;
    }
    .global-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
    .global-map {
        height: 280px;
    }

    .testimonial-card { padding: 24px; }
    .slider-arrow { width: 36px; height: 36px; font-size: 0.875rem; }

    .section-cta { padding: 60px 0; }
    .section-cta h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; gap: 12px; }
    .cta-buttons .btn { width: 100%; }

    /* Mobile nav drawer */
    .header-nav {
        position: fixed;
        top: 0; right: -100%;
        width: 280px; height: 100dvh;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        padding: 80px 24px 40px;
        transition: right 0.3s ease;
        z-index: 1001;
    }
    .header-nav.open { right: 0; }
    .header-nav .nav-menu { flex-direction: column; gap: 0; }
    .header-nav .nav-menu .nav-item { border-bottom: 1px solid var(--color-border); }
    .header-nav .nav-menu .nav-link { display: flex; justify-content: space-between; padding: 16px 0; font-size: 1rem; }
    .header-nav .nav-menu .nav-link::after { display: none; }

    /* Mega dropdown becomes accordion on mobile */
    .nav-mega {
        position: static;
        transform: none;
        min-width: 0;
        max-width: none;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        background: rgba(14, 122, 71, 0.03);
        padding: 0;
        display: block;
        transition: none;
        border-radius: 0;
    }
    .nav-item--has-children::before { display: none; }
    .nav-item--has-children:hover .nav-mega { transform: none; }
    .nav-item--has-children.open .nav-mega,
    .nav-item--has-children .nav-mega {
        max-height: none;
        padding: 6px 14px 14px;
    }
    .nav-item--has-children .nav-caret { transition: transform 0.25s ease; }
    .nav-item--has-children.open .nav-caret { transform: rotate(-180deg); }
    .nav-mega__col { padding: 8px 0; }
    .nav-mega__title { padding-bottom: 6px; margin-bottom: 4px; }
    .nav-mega__link { padding: 8px 0; margin: 0; }
    .nav-mega__link:hover { padding-left: 6px; }

    .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

@media (max-width: 1024px) {
    .site-header {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 28px rgba(14, 122, 71, 0.08);
    }
    .header-container {
        min-width: 0;
    }
    .header-logo {
        min-width: 0;
    }
    .header-logo .logo-img {
        height: 38px;
        max-width: min(50vw, 190px);
    }
    .header-actions {
        display: none;
    }
    .mobile-lang-switch {
        display: flex;
        flex: 0 0 auto;
        gap: 6px;
        margin-left: auto;
    }
    .mobile-lang-switch a {
        align-items: center;
        background: rgba(20, 156, 92, 0.08);
        border: 1px solid rgba(20, 156, 92, 0.18);
        border-radius: 999px;
        color: var(--color-primary-dark);
        display: inline-flex;
        font-size: 0.75rem;
        font-weight: 700;
        height: 34px;
        padding: 0 10px;
    }
    .mobile-lang-switch a.active {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
    .mobile-toggle {
        align-items: center;
        background: var(--color-primary);
        border: 1px solid rgba(255, 255, 255, 0.35);
        border-radius: 999px;
        box-shadow: 0 10px 24px rgba(20, 156, 92, 0.24);
        flex: 0 0 auto;
        height: 46px;
        justify-content: center;
        margin-left: 10px;
        padding: 0;
        position: relative;
        width: 46px;
        z-index: 1002;
    }
    .mobile-toggle span {
        background: #fff;
        height: 2px;
        width: 20px;
    }
    .header-nav {
        background: var(--color-white);
        border: 1px solid rgba(20, 156, 92, 0.12);
        border-radius: 24px 0 0 24px;
        box-shadow: 0 24px 64px rgba(15, 23, 42, 0.18);
        display: block;
        height: calc(100dvh - 24px);
        left: auto;
        max-width: min(92vw, 340px);
        overflow-y: auto;
        padding: calc(28px + env(safe-area-inset-top)) 18px calc(28px + env(safe-area-inset-bottom));
        right: calc(-1 * min(92vw, 340px) - 24px);
        top: 12px;
        visibility: hidden;
        width: min(92vw, 340px);
    }
    .header-nav.open {
        right: 12px;
        visibility: visible;
    }
    .header-nav .nav-menu {
        display: flex;
        gap: 10px;
    }
    .header-nav .nav-menu .nav-item {
        background: rgba(20, 156, 92, 0.045);
        border: 1px solid rgba(20, 156, 92, 0.1);
        border-radius: 18px;
        overflow: hidden;
    }
    .header-nav .nav-menu .nav-link {
        align-items: center;
        border-radius: 18px;
        color: var(--color-text);
        display: flex;
        font-size: 1rem;
        font-weight: 700;
        justify-content: space-between;
        min-height: 54px;
        padding: 14px 16px;
        width: 100%;
    }
    .header-nav .nav-menu .nav-link:hover,
    .header-nav .nav-menu .nav-link:focus-visible {
        background: rgba(20, 156, 92, 0.08);
        color: var(--color-primary-dark);
    }
    .header-nav .nav-menu .nav-link::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: 1fr; }
    .hero-quote-form { padding: 24px 16px; }
    .hero-quote-form h3 { font-size: 1.1rem; }
    .partners-logos { gap: 20px; }
    .stat-item .stat-number { font-size: 2rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 8px; }
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: calc(16px + env(safe-area-inset-bottom));
        gap: 10px;
        right: 14px;
    }
    .float-btn {
        height: 44px;
        width: 44px;
    }
    .float-btn::before {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header-nav,
    .nav-mega,
    .float-btn,
    .float-btn::before,
    .float-top {
        transition: none;
    }
}
/* CF7 form styling inside hero quote form */
.hero-quote-form .wpcf7 { width: 100%; }
.hero-quote-form .wpcf7-form p { margin-bottom: 12px; }
.hero-quote-form .wpcf7-form label {
    display: block;
    font-size: 0.813rem;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 4px;
}
.hero-quote-form .wpcf7-form input[type="text"],
.hero-quote-form .wpcf7-form input[type="email"],
.hero-quote-form .wpcf7-form input[type="tel"],
.hero-quote-form .wpcf7-form select,
.hero-quote-form .wpcf7-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    transition: border-color 0.2s;
    background: #fff;
}
.hero-quote-form .wpcf7-form input:focus,
.hero-quote-form .wpcf7-form textarea:focus,
.hero-quote-form .wpcf7-form select:focus {
    outline: none;
    border-color: var(--color-primary);
}
.hero-quote-form .wpcf7-form textarea { resize: vertical; min-height: 80px; }
.hero-quote-form .wpcf7-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.25s;
}
.hero-quote-form .wpcf7-form input[type="submit"]:hover { background: var(--color-primary-dark); }
.hero-quote-form .wpcf7-response-output {
    margin: 12px 0 0 !important;
    padding: 10px !important;
    border-radius: var(--radius-sm) !important;
    font-size: 0.875rem;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-dark);
    color: rgba(255,255,255,0.9);
    padding: 16px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner__inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-banner p { font-size: 0.875rem; line-height: 1.5; }
.cookie-banner a { color: var(--color-primary-light); text-decoration: underline; }
.cookie-accept { flex-shrink: 0; padding: 10px 24px; font-size: 0.875rem; }
.header-email {
    font-size: 0.813rem;
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.header-email:hover { color: var(--color-primary); }
.header-divider { opacity: 0.35; color: var(--color-text-light); }
.lang-switch { display: flex; gap: 4px; }
.mobile-lang-switch { display: none; }
.lang-switch a {
    font-size: 0.813rem;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.lang-switch a:hover { color: var(--color-primary); }
.lang-switch a.active {
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .site-header {
        left: 12px;
        right: 12px;
        top: calc(10px + env(safe-area-inset-top));
        width: auto;
        border: 1px solid rgba(20, 156, 92, 0.12);
        border-radius: 999px;
    }
    .header-container {
        height: 60px;
        padding: 0 10px 0 14px;
    }
    .mobile-lang-switch {
        display: flex;
        flex: 0 0 auto;
        margin-left: auto;
    }
    .nav-overlay,
    .nav-overlay.visible {
        display: none;
        opacity: 0;
        pointer-events: none;
    }
    body.nav-open {
        overflow: auto;
    }
    .header-nav .nav-menu {
        flex-direction: column;
    }
    .nav-mega {
        background: transparent;
    }
    .nav-item--has-children .nav-mega,
    .nav-item--has-children.open .nav-mega {
        max-height: none;
        padding: 0 10px 14px;
    }
    .nav-mega__col {
        border-top: 1px solid rgba(20, 156, 92, 0.08);
        padding: 10px 0 4px;
    }
    .nav-mega__title {
        border-bottom: 0;
        color: var(--color-primary);
        font-size: 0.72rem;
        margin: 0 0 4px;
        padding: 0 6px;
    }
    .nav-mega__link {
        border-radius: 12px;
        color: var(--color-text);
        font-size: 0.9rem;
        margin: 2px 0;
        padding: 9px 10px;
    }
    .nav-mega__link:hover,
    .nav-mega__link:focus-visible {
        background: rgba(20, 156, 92, 0.08);
        color: var(--color-primary-dark);
        padding-left: 10px;
    }
    .nav-mega__link--featured {
        background: rgba(20, 156, 92, 0.1);
        color: var(--color-primary-dark);
    }
}

@media (max-width: 768px) {
    .cookie-banner__inner { flex-direction: column; text-align: center; gap: 12px; }
    .cookie-accept { width: 100%; }
}
