/* ===== HEADER & NAVIGATION ===== */

.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 var(--space-6);
    max-width: var(--container-2xl);
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: var(--weight-bold);
    color: var(--color-primary-800);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--color-secondary-600);
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--color-text-tertiary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: var(--weight-medium);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--color-text-secondary);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--color-primary-700);
    background: var(--color-gray-50);
}

.nav-link.active {
    color: var(--color-primary-700);
    background: var(--color-primary-50);
    font-weight: var(--weight-semibold);
}

.nav-cta {
    padding: 0.5rem 1.25rem;
    background: var(--color-secondary-600);
    color: white;
    border-radius: 8px;
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--color-secondary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 139, 122, 0.3);
    color: white;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--color-gray-50);
}

.mobile-menu-btn .hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive Header */
@media (max-width: 820px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-4);
        gap: var(--space-1);
        border-top: 1px solid var(--color-border-light);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: var(--text-base);
        border-radius: 8px;
        width: 100%;
    }
    
    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 64px;
        padding: 0 var(--space-4);
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .logo-tagline {
        font-size: 0.45rem;
    }
    
    .nav-links {
        top: 64px;
        max-height: calc(100vh - 64px);
    }
}

/* ===== FOOTER ===== */

.site-footer.improved-footer {
    background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-900));
    padding: var(--space-16) 0 var(--space-6);
    position: relative;
    overflow: hidden;
    margin-top: var(--space-8);
    border-top: 4px solid var(--color-secondary-600);
}

.site-footer.improved-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr;
    gap: var(--space-8);
    padding-bottom: var(--space-8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer.improved-footer .footer-brand {
    max-width: 320px;
}

.site-footer.improved-footer .footer-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin: var(--space-4) 0;
}

.site-footer.improved-footer .footer-trust-badges {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.site-footer.improved-footer .footer-trust-badges .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.2rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.6);
}

.site-footer.improved-footer .footer-trust-badges .trust-badge i {
    color: var(--color-secondary-400);
}

.site-footer.improved-footer .footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.site-footer.improved-footer .footer-links h4 {
    color: white;
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.site-footer.improved-footer .footer-links ul {
    list-style: none;
    padding: 0;
}

.site-footer.improved-footer .footer-links ul li {
    margin-bottom: var(--space-2);
}

.site-footer.improved-footer .footer-links ul li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.site-footer.improved-footer .footer-links ul li a:hover {
    color: white;
    transform: translateX(4px);
}

.site-footer.improved-footer .footer-connect h4 {
    color: white;
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.site-footer.improved-footer .connect-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
}

.site-footer.improved-footer .connect-item i {
    width: 18px;
    color: var(--color-secondary-400);
    flex-shrink: 0;
}

.site-footer.improved-footer .connect-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer.improved-footer .connect-item a:hover {
    color: white;
}

.site-footer.improved-footer .footer-cta {
    display: inline-block;
    margin-top: var(--space-4);
    color: var(--color-secondary-400);
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.site-footer.improved-footer .footer-cta:hover {
    color: white;
    transform: translateX(4px);
}

.site-footer.improved-footer .footer-social {
    display: flex;
    gap: var(--space-3);
}

.site-footer.improved-footer .footer-social .social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.site-footer.improved-footer .footer-social .social-link:hover {
    background: var(--color-secondary-600);
    color: white;
    transform: translateY(-2px);
}

.site-footer.improved-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.3);
    flex-wrap: wrap;
    gap: var(--space-3);
}

.site-footer.improved-footer .footer-legal {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.site-footer.improved-footer .footer-legal a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer.improved-footer .footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.site-footer.improved-footer .footer-legal .separator {
    color: rgba(255, 255, 255, 0.1);
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .site-footer.improved-footer .footer-grid {
        grid-template-columns: 1fr 2fr;
        gap: var(--space-6);
    }
    
    .site-footer.improved-footer .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .site-footer.improved-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .site-footer.improved-footer .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .site-footer.improved-footer {
        padding: var(--space-8) 0 var(--space-4);
    }
    
    .site-footer.improved-footer .footer-links-group {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .site-footer.improved-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .site-footer.improved-footer .footer-legal {
        justify-content: center;
    }
}
/* ===== REFINED NAVBAR ===== */

.site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.97);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
    padding: 0 var(--space-6);
    max-width: var(--container-2xl);
    margin: 0 auto;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: var(--weight-bold);
    color: var(--color-primary-800);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--color-secondary-600);
}

.logo-tagline {
    font-size: 0.55rem;
    color: var(--color-text-tertiary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: var(--weight-medium);
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-1);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--color-text-secondary);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--color-primary-700);
    background: var(--color-gray-50);
}

.nav-link.active {
    color: var(--color-primary-700);
    background: var(--color-primary-50);
    font-weight: var(--weight-semibold);
}

/* Nav CTA Button */
.nav-cta {
    padding: 0.5rem 1.25rem;
    background: var(--color-secondary-600);
    color: white;
    border-radius: 8px;
    font-weight: var(--weight-semibold);
    font-size: var(--text-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--color-secondary-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 139, 122, 0.3);
    color: white;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-family: var(--font-primary);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-secondary);
    padding: 0.5rem 0.875rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.dropdown-toggle:hover {
    color: var(--color-primary-700);
    background: var(--color-gray-50);
}

.dropdown-toggle .dropdown-icon {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-3);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border-light);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu .dropdown-label {
    display: block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-tertiary);
    padding: 0.4rem 0.875rem;
    margin-bottom: var(--space-1);
}

.dropdown-menu .dropdown-link {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 0.6rem 0.875rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    transition: all 0.2s ease;
}

.dropdown-menu .dropdown-link:hover {
    background: var(--color-gray-50);
    color: var(--color-primary-700);
}

.dropdown-menu .dropdown-link i {
    width: 18px;
    color: var(--color-secondary-500);
    font-size: 0.9rem;
}

.dropdown-menu .dropdown-divider {
    height: 1px;
    background: var(--color-border-light);
    margin: var(--space-2) 0;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:hover {
    background: var(--color-gray-50);
}

.mobile-menu-btn .hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.7rem;
        font-size: var(--text-xs);
    }
}

@media (max-width: 820px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--space-4);
        gap: var(--space-1);
        border-top: 1px solid var(--color-border-light);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: var(--text-base);
        border-radius: 8px;
        width: 100%;
    }
    
    .nav-cta {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        min-width: auto;
        box-shadow: none;
        border: none;
        padding: var(--space-2) 0 var(--space-2) var(--space-4);
        opacity: 1;
        visibility: visible;
        display: none;
        background: transparent;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle .dropdown-icon {
        margin-left: auto;
    }
    
    .dropdown-menu .dropdown-link {
        padding: 0.5rem 0.875rem;
    }
    
    .dropdown-menu .dropdown-label {
        padding: 0.5rem 0.875rem 0.25rem;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 64px;
        padding: 0 var(--space-4);
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    .logo-tagline {
        font-size: 0.45rem;
    }
    
    .nav-links {
        top: 64px;
        max-height: calc(100vh - 64px);
    }
}

/* Focus states for accessibility */
.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.nav-cta:focus-visible {
    outline: 2px solid var(--color-secondary-600);
    outline-offset: 2px;
}

/* ===== SIMPLIFIED INTERNAL HERO ===== */

.new-internal-hero {
    position: relative;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-900));
    color: white;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
}

.new-internal-hero .internal-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.new-internal-hero .internal-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(15, 37, 64, 0.2) 100%);
    z-index: 1;
}

.new-internal-hero .internal-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.new-internal-hero .internal-hero-breadcrumb {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-4);
}

.new-internal-hero .internal-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.new-internal-hero .internal-hero-breadcrumb a:hover {
    color: white;
}

.new-internal-hero .internal-hero-breadcrumb .separator {
    margin: 0 var(--space-2);
    color: rgba(255, 255, 255, 0.2);
}

.new-internal-hero .internal-hero-breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.new-internal-hero .internal-hero-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
    font-family: var(--font-display);
    margin-bottom: var(--space-2);
}

.new-internal-hero .internal-hero-title .title-highlight {
    color: var(--color-secondary-400);
}

.new-internal-hero .internal-hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    font-weight: var(--weight-regular);
    max-width: 600px;
    margin: 0 auto var(--space-4);
}

.new-internal-hero .internal-hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.new-internal-hero .internal-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.new-internal-hero .internal-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3;
    pointer-events: none;
}

.new-internal-hero .internal-hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
    fill: white;
}

/* Responsive */
@media (max-width: 820px) {
    .new-internal-hero {
        padding: 50px 0 30px;
        min-height: 180px;
    }
    
    .new-internal-hero .internal-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .new-internal-hero {
        padding: 40px 0 25px;
        min-height: 160px;
    }
    
    .new-internal-hero .internal-hero-title {
        font-size: 2rem;
    }
    
    .new-internal-hero .internal-hero-subtitle {
        font-size: var(--text-base);
    }
    
    .new-internal-hero .internal-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .new-internal-hero .internal-hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
/* ===== STANDARDIZED INTERNAL HERO ===== */

.internal-hero-standard {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-900));
    color: white;
    overflow: hidden;
    padding: 50px 0 40px;
}

.internal-hero-standard .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.internal-hero-standard .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.internal-hero-standard .hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.internal-hero-standard .hero-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
    font-family: var(--font-display);
    margin-bottom: var(--space-3);
    color: white;
}

.internal-hero-standard .hero-title .text-highlight {
    color: var(--color-secondary-400);
}

.internal-hero-standard .hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin: 0 auto var(--space-4);
}

/* Meta Cards */
.internal-hero-standard .hero-meta-cards {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin: var(--space-4) 0 var(--space-6);
    flex-wrap: wrap;
}

.internal-hero-standard .meta-card {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.internal-hero-standard .meta-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--color-secondary-400);
    transform: translateY(-2px);
}

.internal-hero-standard .meta-card i {
    color: var(--color-secondary-400);
    font-size: 0.8rem;
}

/* Actions */
.internal-hero-standard .hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.internal-hero-standard .hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

/* No Waves */
.internal-hero-standard .hero-wave {
    display: none !important;
}

/* Responsive */
@media (max-width: 820px) {
    .internal-hero-standard {
        padding: 40px 0 30px;
        min-height: 220px;
    }
    
    .internal-hero-standard .hero-title {
        font-size: var(--text-3xl);
    }
    
    .internal-hero-standard .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .internal-hero-standard .hero-meta-cards {
        gap: var(--space-3);
    }
    
    .internal-hero-standard .meta-card {
        font-size: var(--text-xs);
        padding: 0.3rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .internal-hero-standard {
        padding: 35px 0 25px;
        min-height: 200px;
    }
    
    .internal-hero-standard .hero-title {
        font-size: var(--text-2xl);
    }
    
    .internal-hero-standard .hero-subtitle {
        font-size: var(--text-sm);
    }
    
    .internal-hero-standard .hero-meta-cards {
        gap: var(--space-2);
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .internal-hero-standard .meta-card {
        font-size: var(--text-xs);
        padding: 0.25rem 0.6rem;
        white-space: normal;
    }
    
    .internal-hero-standard .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .internal-hero-standard .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}