/* ========================================
   ENHANCED HOME PAGE STYLES
   Design: Professional Aspiration
   ======================================== */

:root {
    /* Enhanced Color System */
    --color-primary: #0f766e;
    --color-primary-light: #14b8a6;
    --color-primary-dark: #0d5b54;
    --color-accent: #f97316;
    --color-accent-light: #fb923c;
    --color-success: #10b981;
    --color-warning: #f59e0b;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    --gradient-accent: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 118, 110, 0.95) 0%, rgba(20, 184, 166, 0.9) 50%, rgba(249, 115, 22, 0.85) 100%);

    /* Typography */
    --font-display: 'Be Vietnam Pro', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --space-hero: min(20vh, 160px);

    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(15, 118, 110, 0.3);
}

/* ========================================
   ENHANCED HERO SECTION
   ======================================== */

.hero-enhanced {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdfa 100%);
}

/* Hero Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg__gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.08;
}

.hero-bg__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(15, 118, 110, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.08) 0%, transparent 50%);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    bottom: 15%;
    right: -5%;
    animation-delay: -7s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hero Content */
.hero-enhanced__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 80px 24px;
    max-width: 1000px;
}

.hero-enhanced__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-soft);
    animation: fadeInDown 0.8s ease-out;
}

.hero-enhanced__badge svg {
    color: var(--color-primary);
}

/* Hero Title */
.hero-enhanced__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 32px 0 24px;
    color: var(--color-primary);
}

/* Desktop - larger font sizes */
@media (min-width: 1024px) {
    .hero-enhanced__title {
        font-size: 5.5rem;
    }

    .hero-enhanced__subtitle {
        font-size: 1.5rem;
    }

    .hero-enhanced__badge {
        font-size: 15px;
        padding: 12px 24px;
    }
}

.title-line {
    display: block;
    opacity: 1; /* Fallback - visible by default */
    animation: slideInUp 0.8s ease-out;
}

/* Only hide if animations are supported */
@media (prefers-reduced-motion: no-preference) {
    .title-line {
        opacity: 0;
        animation: slideInUp 0.8s ease-out forwards;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-enhanced__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.75);
    max-width: 700px;
    margin: 0 auto 48px;
    animation: fadeIn 1s ease-out 0.3s both;
}

.hero-enhanced__subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Enhanced Search */
.hero-search-enhanced {
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeIn 1s ease-out 0.5s both;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.search-wrapper:hover {
    box-shadow: var(--shadow-strong);
    transform: translateY(-2px);
}

.search-wrapper:focus-within {
    box-shadow: none;
}

.search-icon {
    color: var(--color-primary);
    flex-shrink: 0;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    background: transparent;
    padding: 12px 0;
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.45);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.search-btn svg {
    transition: transform 0.3s ease;
}

.search-btn:hover svg {
    transform: translateX(4px);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    animation: fadeIn 1s ease-out 0.7s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.trust-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    color: white;
}

.trust-badge span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.75);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero-enhanced {
        min-height: auto;
        padding: 20px 0;
    }

    .hero-enhanced__content {
        padding: 40px 16px 30px;
    }

    .hero-enhanced__badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero-enhanced__title {
        margin: 16px 0 12px;
        font-size: 2rem;
    }

    .hero-enhanced__subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
        padding: 0 8px;
        line-height: 1.5;
    }

    .hero-search-enhanced {
        margin-bottom: 24px;
    }

    .search-wrapper {
        flex-wrap: wrap;
        padding: 10px;
        border-radius: 16px;
        gap: 10px;
    }

    .search-icon {
        margin-right: 6px;
        width: 18px;
        height: 18px;
    }

    .search-input {
        flex: 1;
        min-width: 0;
        padding: 8px 0;
        font-size: 14px;
    }

    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 14px;
    }

    /* Trust badges: 2 columns on mobile */
    .hero-trust-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0;
    }

    .trust-badge {
        justify-content: flex-start;
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 12px;
    }

    .trust-badge__icon {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .trust-badge__icon svg {
        width: 14px;
        height: 14px;
    }

    .trust-badge span {
        font-size: 11px;
        line-height: 1.3;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .hero-enhanced__content {
        padding: 30px 12px 24px;
    }

    .hero-enhanced__badge {
        font-size: 9px;
        padding: 5px 10px;
        gap: 4px;
    }

    .hero-enhanced__badge svg {
        width: 10px;
        height: 10px;
    }

    .hero-enhanced__title {
        margin: 12px 0 10px;
        font-size: 1.75rem;
    }

    .hero-enhanced__subtitle {
        font-size: 0.875rem;
        margin-bottom: 16px;
        line-height: 1.45;
    }

    .hero-search-enhanced {
        margin-bottom: 20px;
    }

    .search-wrapper {
        padding: 8px;
        gap: 8px;
        border-radius: 12px;
    }

    .search-icon {
        width: 16px;
        height: 16px;
        margin-right: 4px;
    }

    .search-input {
        font-size: 13px;
        padding: 6px 0;
    }

    .search-input::placeholder {
        font-size: 12px;
    }

    .search-btn {
        padding: 9px 16px;
        font-size: 13px;
        gap: 4px;
        border-radius: 8px;
    }

    .search-btn svg {
        width: 14px;
        height: 14px;
    }

    /* Trust badges: single column on very small screens */
    .hero-trust-badges {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .trust-badge {
        padding: 8px 12px;
        gap: 8px;
        border-radius: 10px;
    }

    .trust-badge__icon {
        width: 26px;
        height: 26px;
    }

    .trust-badge__icon svg {
        width: 12px;
        height: 12px;
    }

    .trust-badge span {
        font-size: 11px;
    }
}

/* ========================================
   ENHANCED STATS SECTION
   ======================================== */

.stats-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    opacity: 0.2;
}

.stats-header {
    text-align: center;
    margin-bottom: 64px;
}

.stats-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.stats-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px;
}

.stats-subtitle {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Stat Cards */
.stat-card-enhanced {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.stat-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-enhanced:hover::before {
    transform: scaleX(1);
}

.stat-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15, 118, 110, 0.12);
    border-color: var(--color-primary-light);
}

.stat-card-enhanced__bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(15, 118, 110, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card-enhanced:hover .stat-card-enhanced__bg {
    opacity: 1;
}

.stat-card-enhanced__icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 20px;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.2);
    transition: all 0.4s ease;
}

.stat-card-enhanced:hover .stat-card-enhanced__icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.3);
}

.stat-card-enhanced__content {
    position: relative;
    z-index: 2;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 16px;
}

.stat-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(15, 118, 110, 0.05);
    border-radius: 50px;
    width: fit-content;
}

.stat-trend svg {
    flex-shrink: 0;
}

.stat-trend--up {
    color: var(--color-success);
    background: rgba(16, 185, 129, 0.1);
}

.stat-trend--verified {
    color: var(--color-primary);
    background: rgba(15, 118, 110, 0.1);
}

.stat-trend--active {
    color: var(--color-accent);
    background: rgba(249, 115, 22, 0.1);
}

.stat-trend--global {
    color: var(--color-warning);
    background: rgba(245, 158, 11, 0.1);
}

/* Animations */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-value.counting {
    animation: countUp 0.6s ease-out;
}

/* Responsive Stats */
@media (max-width: 968px) {
    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .stats-section-enhanced {
        padding: 50px 0;
    }

    .stats-header {
        margin-bottom: 32px;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .stats-subtitle {
        font-size: 0.9rem;
    }

    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-card-enhanced {
        padding: 20px 16px;
    }

    .stat-card-enhanced__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .stat-card-enhanced__icon svg {
        width: 22px;
        height: 22px;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-trend {
        font-size: 10px;
        margin-top: 6px;
    }
}

@media (max-width: 380px) {
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card-enhanced {
        padding: 16px 14px;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .stat-card-enhanced__icon {
        margin-bottom: 0;
    }

    .stat-card-enhanced__content {
        text-align: left;
    }
}

/* ========================================
   COMMON SECTION STYLES
   ======================================== */

.section-header-enhanced {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
    gap: 32px;
}

.section-header-enhanced__text {
    flex: 1;
}

.section-eyebrow-enhanced {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section-title-enhanced {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 12px;
}

.section-subtitle-enhanced {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    max-width: 600px;
}

.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.2);
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
    color: white;
}

.btn-primary-enhanced svg {
    transition: transform 0.3s ease;
}

.btn-primary-enhanced:hover svg {
    transform: translateX(4px);
}

/* ========================================
   ENHANCED INDUSTRIES SECTION
   ======================================== */

.industries-section-enhanced {
    padding: 100px 0;
    background: white;
    position: relative;
}

.industries-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.industry-card-enhanced {
    position: relative;
    padding: 32px 28px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.industry-card-enhanced:hover {
    transform: translateY(-8px);
    border-color: var(--icon-color, var(--color-primary));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-card-enhanced__bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--icon-color, var(--color-primary)), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card-enhanced:hover .industry-card-enhanced__bg {
    opacity: 0.05;
}

.industry-card-enhanced__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--icon-color, var(--color-primary)) 0%, var(--icon-color, var(--color-primary)) 100%);
    border-radius: 16px;
    color: white;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.industry-card-enhanced:hover .industry-card-enhanced__icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px var(--icon-color, rgba(15, 118, 110, 0.3));
}

.industry-card-enhanced__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 8px;
}

.industry-card-enhanced__count {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.5);
    margin: 0 0 16px;
}

.industry-card-enhanced__arrow {
    font-size: 1.5rem;
    color: var(--icon-color, var(--color-primary));
    margin-top: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.industry-card-enhanced:hover .industry-card-enhanced__arrow {
    opacity: 1;
    transform: translateX(0);
}

.industry-card-enhanced--all {
    border-style: dashed;
    border-width: 2px;
}

.industry-card-enhanced--all:hover {
    border-style: solid;
}

/* Responsive Industries */
@media (max-width: 968px) {
    .industries-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-header-enhanced {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .industries-section-enhanced {
        padding: 60px 0;
    }

    .industries-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .industry-card-enhanced {
        padding: 24px 20px;
    }

    .industry-card-enhanced__icon {
        width: 56px;
        height: 56px;
    }

    .industry-card-enhanced__icon svg {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   ENHANCED COUNTRIES SECTION
   ======================================== */

.countries-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 100%);
}

.countries-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.country-card-enhanced {
    position: relative;
    padding: 48px 32px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.country-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-card-enhanced:hover::before {
    transform: scaleX(1);
}

.country-card-enhanced:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 24px 48px rgba(15, 118, 110, 0.15);
}

.country-card-enhanced__flag {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.country-card-enhanced:hover .country-card-enhanced__flag {
    transform: scale(1.2) rotate(-5deg);
}

.country-card-enhanced__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 20px;
}

.country-card-enhanced__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.country-card-enhanced__badge svg {
    color: var(--color-primary);
}

.country-orders-count {
    font-size: 1.1rem;
    font-weight: 700;
}

.country-card-enhanced__arrow {
    position: absolute;
    bottom: 20px;
    right: 24px;
    font-size: 1.8rem;
    color: var(--color-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.country-card-enhanced:hover .country-card-enhanced__arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   ENHANCED ORDERS SECTION
   ======================================== */

.orders-section-enhanced {
    padding: 100px 0;
    background: white;
}

.orders-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}

.order-card-enhanced {
    position: relative;
    padding: 28px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.order-card-enhanced:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.order-card-enhanced__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.order-card-enhanced__badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.country-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
}

.hot-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-card-enhanced__date {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.45);
}

.order-card-enhanced__title {
    margin: 0 0 16px;
}

.order-card-enhanced__title a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.order-card-enhanced__title a:hover {
    color: var(--color-primary);
}

.order-card-enhanced__company {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.6);
}

.order-card-enhanced__company svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.order-card-enhanced__salary {
    padding: 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 146, 60, 0.08) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.salary-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}

.salary-unit {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
}

.order-card-enhanced__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.6);
}

.meta-item svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.order-card-enhanced__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.priority-badge {
    flex: 1;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-warning);
}

.order-apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-apply-btn:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.25);
    color: white;
}

.order-apply-btn svg {
    transition: transform 0.3s ease;
}

.order-apply-btn:hover svg {
    transform: translateX(4px);
}

/* ========================================
   ENHANCED HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
    position: relative;
}

.timeline-steps {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step__number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.25);
    position: relative;
    z-index: 2;
}

.timeline-step__content {
    padding: 20px 28px;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline-step:hover .timeline-step__content {
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.timeline-step__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.1) 0%, rgba(20, 184, 166, 0.1) 100%);
    border-radius: 16px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.timeline-step__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 12px;
}

.timeline-step__desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.65);
    margin: 0;
}

.timeline-step__line {
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(15, 118, 110, 0.2) 100%);
    z-index: 1;
}

.timeline-step:last-child .timeline-step__line {
    display: none;
}

/* Responsive Countries */
@media (max-width: 640px) {
    .countries-section-enhanced {
        padding: 60px 0;
    }

    .countries-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .country-card-enhanced {
        padding: 36px 24px;
    }
}

/* Responsive Orders */
@media (max-width: 768px) {
    .orders-section-enhanced {
        padding: 60px 0;
    }

    .orders-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .how-it-works-section-enhanced {
        padding: 60px 0;
    }

    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        margin-bottom: 36px;
    }

    .timeline-step__number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-step__content {
        padding: 16px 20px;
    }

    .timeline-step__icon {
        width: 48px;
        height: 48px;
    }

    .timeline-step__icon svg {
        width: 24px;
        height: 24px;
    }

    .timeline-step__title {
        font-size: 1.25rem;
    }

    .timeline-step__line {
        left: 30px;
        top: 60px;
        bottom: -36px;
    }
}

/* ========================================
   COMPANIES SECTION
======================================== */
.companies-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdfa 100%);
    position: relative;
}

.companies-grid,
.companies-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

@media (max-width: 1200px) {
    .companies-grid,
    .companies-grid-enhanced {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 600px) {
    .companies-grid,
    .companies-grid-enhanced {
        grid-template-columns: 1fr;
    }
}

.company-card-enhanced {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.company-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.15);
    border-color: rgba(15, 118, 110, 0.2);
}

.company-card-enhanced:hover::before {
    transform: scaleX(1);
}

.company-verified-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.company-verified-badge svg {
    width: 14px;
    height: 14px;
}

.company-logo-wrapper {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.company-card-enhanced:hover .company-logo-wrapper {
    transform: scale(1.1);
}

.company-logo-wrapper img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.company-logo-placeholder {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

.company-card-enhanced__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    text-align: center;
    font-family: var(--font-display);
    margin: 0;
}

.company-card-enhanced__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.company-card-enhanced__location svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary);
}

.company-card-enhanced__orders {
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 118, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
}

.company-orders-label {
    color: var(--color-text-secondary);
}

.company-orders-count {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
    font-family: var(--font-display);
}

/* Company Card Enhanced Sub-elements (BEM) */
.company-card-enhanced__logo {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.company-card-enhanced:hover .company-card-enhanced__logo {
    transform: scale(1.1);
}

.company-card-enhanced__logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.company-card-enhanced__logo .logo-placeholder {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-display);
}

.company-card-enhanced__badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.08) 0%, rgba(20, 184, 166, 0.08) 100%);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-primary);
    font-family: var(--font-body);
}

.company-card-enhanced__badge svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */
.testimonials-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    z-index: 0;
}

.testimonials-section-enhanced .page-container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-card-enhanced {
    background: white;
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 118, 110, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.testimonial-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 118, 110, 0.15);
    border-color: rgba(15, 118, 110, 0.15);
}

.quote-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    opacity: 0.15;
    color: var(--color-primary);
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.testimonial-rating-enhanced {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.testimonial-rating-enhanced svg {
    width: 20px;
    height: 20px;
    fill: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    transition: transform 0.2s ease;
}

.testimonial-card-enhanced:hover .testimonial-rating-enhanced svg {
    transform: scale(1.15);
}

.testimonial-card-enhanced__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--color-text-primary);
    margin-bottom: 28px;
    font-style: italic;
    font-family: var(--font-body);
    quotes: """ """ "'" "'";
}

.testimonial-card-enhanced__text::before {
    content: open-quote;
    font-size: 1.5em;
    color: var(--color-primary);
    opacity: 0.3;
}

.testimonial-card-enhanced__text::after {
    content: close-quote;
    font-size: 1.5em;
    color: var(--color-primary);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid rgba(15, 118, 110, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.375rem;
    color: white;
    font-family: var(--font-display);
    position: relative;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-author__info {
    flex: 1;
    min-width: 0;
}

.testimonial-author__name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    font-family: var(--font-display);
}

.testimonial-author__role {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-bottom: 2px;
}

.testimonial-author__country {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 600;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section-enhanced {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-bg .floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape-cta-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-cta-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    animation: float 6s ease-in-out infinite reverse;
}

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

.cta-section-enhanced__title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 24px;
    font-family: var(--font-display);
    line-height: 1.2;
}

.cta-section-enhanced__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: white;
    color: var(--color-primary);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-family: var(--font-display);
    border: 2px solid white;
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-display);
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

/* ========================================
   NEWSLETTER SECTION
======================================== */
.newsletter-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f0fdfa 100%);
}

.newsletter-card-enhanced {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 118, 110, 0.1);
    border-radius: 24px;
    padding: 64px 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15, 118, 110, 0.08);
    position: relative;
    overflow: hidden;
}

.newsletter-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.newsletter-card-enhanced__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.newsletter-card-enhanced__icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.newsletter-card-enhanced__title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.newsletter-card-enhanced__description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.newsletter-form-enhanced {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(15, 118, 110, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: white;
}

.newsletter-input-wrapper input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.newsletter-input-wrapper input::placeholder {
    color: #94a3b8;
}

.newsletter-submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 118, 110, 0.4);
}

.newsletter-submit-btn svg {
    width: 20px;
    height: 20px;
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 16px;
}

/* ========================================
   RESPONSIVE - COMPANIES, TESTIMONIALS, CTA, NEWSLETTER
======================================== */
@media (max-width: 968px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-section-enhanced__title {
        font-size: 2.25rem;
    }

    .cta-section-enhanced__subtitle {
        font-size: 1.125rem;
    }

    .cta-features {
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        text-align: center;
    }

    .newsletter-card-enhanced {
        padding: 48px 32px;
    }

    .newsletter-card-enhanced__title {
        font-size: 1.75rem;
    }
}

@media (max-width: 640px) {
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .company-card-enhanced {
        padding: 24px;
    }

    .testimonial-card-enhanced {
        padding: 28px;
    }

    .testimonial-card-enhanced__text {
        font-size: 0.9375rem;
    }

    .cta-section-enhanced {
        padding: 80px 0;
    }

    .cta-section-enhanced__title {
        font-size: 1.875rem;
    }

    .cta-section-enhanced__subtitle {
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .newsletter-card-enhanced {
        padding: 40px 24px;
    }

    .newsletter-card-enhanced__title {
        font-size: 1.5rem;
    }

    .newsletter-card-enhanced__description {
        font-size: 1rem;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
    }

    .newsletter-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   COMPREHENSIVE MOBILE IMPROVEMENTS
   ======================================== */

/* Tablet & Medium Mobile (768px) */
@media (max-width: 768px) {
    /* Global section padding */
    .countries-section-enhanced,
    .orders-section-enhanced,
    .howitworks-section-enhanced,
    .companies-section-enhanced,
    .testimonials-section-enhanced {
        padding: 70px 0;
    }

    /* Section headers */
    .section-header-enhanced h2 {
        font-size: 2rem;
    }

    .section-header-enhanced p {
        font-size: 1rem;
    }

    /* Countries Section */
    .countries-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .country-card-enhanced {
        padding: 36px 24px;
    }

    .country-card-enhanced__flag {
        font-size: 3.5rem;
    }

    .country-card-enhanced__name {
        font-size: 1.125rem;
    }

    /* Latest Orders Section */
    .orders-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .order-card-enhanced {
        padding: 24px;
    }

    .order-card-enhanced__salary {
        margin-bottom: 16px;
    }

    .salary-amount {
        font-size: 1.75rem;
    }

    .order-card-enhanced__footer {
        flex-wrap: wrap;
        gap: 12px;
    }

    /* How It Works Timeline */
    .timeline-step {
        grid-template-columns: 70px 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .timeline-step__number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .timeline-step__content {
        padding: 20px;
    }

    .timeline-step__title {
        font-size: 1.375rem;
    }

    .timeline-step__line {
        left: 35px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    /* Global section padding - tighter for small screens */
    .stats-section-enhanced,
    .industries-section-enhanced,
    .countries-section-enhanced,
    .orders-section-enhanced,
    .howitworks-section-enhanced,
    .companies-section-enhanced,
    .testimonials-section-enhanced,
    .cta-section-enhanced,
    .newsletter-section-enhanced {
        padding: 50px 0;
    }

    /* Section headers - smaller on mobile */
    .section-header-enhanced {
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .section-header-enhanced h2 {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

    .section-header-enhanced p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }

    /* Stats Section */
    .stat-card-enhanced {
        padding: 28px 20px;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .stat-trend {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    /* Industries Section */
    .industries-grid-enhanced {
        gap: 12px;
    }

    .industry-card-enhanced {
        padding: 20px 16px;
    }

    .industry-card-enhanced__icon {
        width: 52px;
        height: 52px;
    }

    .industry-card-enhanced__title {
        font-size: 1rem;
    }

    .industry-card-enhanced__count {
        font-size: 0.8125rem;
    }

    /* Countries Section */
    .countries-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .country-card-enhanced {
        padding: 32px 20px;
    }

    .country-card-enhanced__flag {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .country-card-enhanced__name {
        font-size: 1.0625rem;
        margin-bottom: 6px;
    }

    .country-orders-label {
        font-size: 0.8125rem;
    }

    .country-orders-count {
        font-size: 1.5rem;
    }

    /* Latest Orders Section */
    .order-card-enhanced {
        padding: 20px;
    }

    .order-hot-badge {
        font-size: 0.6875rem;
        padding: 4px 10px;
        top: 12px;
        right: 12px;
    }

    .order-card-enhanced__title {
        font-size: 1.0625rem;
        margin-bottom: 10px;
    }

    .order-card-enhanced__salary {
        margin-bottom: 14px;
        padding: 14px;
    }

    .salary-label {
        font-size: 0.75rem;
    }

    .salary-amount {
        font-size: 1.625rem;
    }

    .order-card-enhanced__info {
        gap: 10px;
        margin-bottom: 14px;
    }

    .order-info-item {
        font-size: 0.8125rem;
    }

    .order-card-enhanced__footer {
        gap: 10px;
    }

    .order-posted-date {
        font-size: 0.75rem;
    }

    .order-apply-btn {
        font-size: 0.875rem;
        padding: 9px 18px;
    }

    /* How It Works Timeline */
    .timeline-step {
        grid-template-columns: 60px 1fr;
        gap: 16px;
        margin-bottom: 32px;
    }

    .timeline-step__number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .timeline-step__content {
        padding: 16px;
    }

    .timeline-step__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .timeline-step__icon svg {
        width: 24px;
        height: 24px;
    }

    .timeline-step__title {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }

    .timeline-step__description {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .timeline-step__line {
        left: 30px;
        top: 60px;
    }

    /* Companies Section */
    .company-card-enhanced {
        padding: 20px;
    }

    .company-verified-badge {
        font-size: 0.6875rem;
        padding: 5px 10px;
        top: 12px;
        right: 12px;
    }

    .company-logo-wrapper {
        width: 80px;
        height: 80px;
    }

    .company-logo-wrapper img,
    .company-logo-placeholder {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .company-card-enhanced__name {
        font-size: 1rem;
    }

    .company-card-enhanced__location {
        font-size: 0.8125rem;
    }

    .company-card-enhanced__orders {
        font-size: 0.8125rem;
        padding-top: 14px;
    }

    .company-orders-count {
        font-size: 1rem;
    }

    /* Testimonials Section */
    .testimonials-grid {
        gap: 20px;
    }

    .testimonial-card-enhanced {
        padding: 24px;
    }

    .quote-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .testimonial-card-enhanced__text {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .testimonial-rating-enhanced {
        margin-bottom: 20px;
    }

    .testimonial-rating-enhanced svg {
        width: 18px;
        height: 18px;
    }

    .testimonial-author {
        padding-top: 20px;
        gap: 12px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
        font-size: 1.125rem;
    }

    .testimonial-author__name {
        font-size: 0.9375rem;
    }

    .testimonial-author__role,
    .testimonial-author__country {
        font-size: 0.8125rem;
    }

    /* CTA Section */
    .cta-section-enhanced {
        padding: 60px 0;
    }

    .cta-section-enhanced__title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .cta-section-enhanced__subtitle {
        font-size: 0.9375rem;
        margin-bottom: 32px;
        line-height: 1.5;
        padding: 0 8px;
    }

    .cta-features {
        margin-bottom: 32px;
        gap: 12px;
    }

    .cta-feature {
        font-size: 0.875rem;
    }

    .cta-feature svg {
        width: 20px;
        height: 20px;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    /* Newsletter Section */
    .newsletter-section-enhanced {
        padding: 60px 0;
    }

    .newsletter-card-enhanced {
        padding: 36px 20px;
    }

    .newsletter-card-enhanced__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .newsletter-card-enhanced__icon svg {
        width: 28px;
        height: 28px;
    }

    .newsletter-card-enhanced__title {
        font-size: 1.375rem;
        margin-bottom: 12px;
    }

    .newsletter-card-enhanced__description {
        font-size: 0.9375rem;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .newsletter-input-wrapper input {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }

    .newsletter-submit-btn {
        padding: 14px 32px;
        font-size: 0.9375rem;
    }

    .newsletter-privacy {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    /* Ultra compact mode for very small screens */
    .hero-enhanced__title {
        font-size: 1.75rem;
    }

    .section-header-enhanced h2 {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .country-card-enhanced__flag {
        font-size: 2.5rem;
    }

    .salary-amount {
        font-size: 1.5rem;
    }

    .timeline-step__number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .timeline-step {
        grid-template-columns: 50px 1fr;
        gap: 12px;
    }

    .timeline-step__line {
        left: 25px;
    }

    .cta-section-enhanced__title {
        font-size: 1.5rem;
    }
}

/* ========================================
   MARKET COMPARISON SECTION
======================================== */
.market-comparison-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 50%, #ffffff 100%);
    position: relative;
}

.comparison-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.comparison-country-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(15, 118, 110, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.comparison-country-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(15, 118, 110, 0.15);
    border-color: var(--color-primary);
}

.comparison-country-card--featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(15, 118, 110, 0.12);
}

.comparison-country-card--featured:hover {
    box-shadow: 0 16px 48px rgba(15, 118, 110, 0.2);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    z-index: 2;
}

.comparison-country-card__header {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    padding: 36px 28px 28px;
    text-align: center;
    position: relative;
}

.comparison-country-card--featured .comparison-country-card__header {
    background: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);
}

.country-flag-large {
    font-size: 4rem;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.country-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin: 0;
    font-family: var(--font-display);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-country-card__body {
    padding: 28px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 118, 110, 0.08);
    gap: 16px;
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-item__label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    font-weight: 500;
    flex: 1;
}

.comparison-item__label svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

.comparison-item__value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    font-family: var(--font-display);
    text-align: right;
}

.comparison-item__value--highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.125rem;
    font-weight: 800;
}

.btn-primary-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 1.0625rem;
    font-weight: 700;
    font-family: var(--font-display);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4);
}

.btn-primary-enhanced.btn-lg {
    padding: 18px 48px;
    font-size: 1.125rem;
}

.btn-primary-enhanced svg {
    width: 20px;
    height: 20px;
}

/* Responsive Market Comparison */
@media (max-width: 968px) {
    .comparison-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-country-card__header {
        padding: 32px 24px 24px;
    }

    .country-flag-large {
        font-size: 3.5rem;
    }

    .country-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .market-comparison-enhanced {
        padding: 60px 0;
    }

    .comparison-country-card {
        border-width: 1px;
    }

    .comparison-country-card__header {
        padding: 28px 20px 20px;
    }

    .country-flag-large {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    .country-name {
        font-size: 1.375rem;
    }

    .comparison-country-card__body {
        padding: 20px;
    }

    .comparison-item {
        padding: 14px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .comparison-item__label {
        font-size: 0.875rem;
    }

    .comparison-item__value {
        font-size: 0.9375rem;
        text-align: left;
    }

    .comparison-item__value--highlight {
        font-size: 1.0625rem;
    }

    .featured-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 0.6875rem;
    }

    .btn-primary-enhanced.btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .comparison-grid-enhanced {
        gap: 20px;
    }

    .country-flag-large {
        font-size: 2.75rem;
    }

    .country-name {
        font-size: 1.25rem;
    }

    .comparison-item__label svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   ALERTS/SCAM WARNING SECTION
======================================== */
.alerts-section-enhanced {
    padding: 24px 0;
    background: linear-gradient(180deg, #fef2f2 0%, #ffffff 100%);
}

.alert-card-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    border-left: 4px solid;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alert-card-enhanced:last-child {
    margin-bottom: 0;
}

.alert-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    transition: width 0.3s ease;
}

.alert-card-enhanced:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.alert-card-enhanced:hover::before {
    width: 8px;
}

/* Alert Types */
.alert-card-enhanced--danger {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
}

.alert-card-enhanced--danger::before {
    background: linear-gradient(180deg, #dc2626 0%, #991b1b 100%);
}

.alert-card-enhanced--warning {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
}

.alert-card-enhanced--warning::before {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.alert-card-enhanced--info {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.alert-card-enhanced--info::before {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.alert-card-enhanced--success {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.alert-card-enhanced--success::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

/* Icon Wrapper */
.alert-card-enhanced__icon-wrapper {
    flex-shrink: 0;
}

.alert-card-enhanced__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.alert-card-enhanced--danger .alert-card-enhanced__icon {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.alert-card-enhanced--warning .alert-card-enhanced__icon {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.alert-card-enhanced--info .alert-card-enhanced__icon {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.alert-card-enhanced--success .alert-card-enhanced__icon {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.alert-card-enhanced__icon svg {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Content */
.alert-card-enhanced__content {
    flex: 1;
    min-width: 0;
}

.alert-card-enhanced__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.alert-card-enhanced__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
    font-family: var(--font-display);
}

.alert-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-display);
}

.alert-badge--danger {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.alert-badge--warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.alert-badge--info {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.alert-badge--success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.alert-card-enhanced__message {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Action Button */
.alert-card-enhanced__action {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: var(--font-display);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.alert-card-enhanced--danger .alert-card-enhanced__action {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.alert-card-enhanced--danger .alert-card-enhanced__action:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

.alert-card-enhanced--warning .alert-card-enhanced__action {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.alert-card-enhanced--warning .alert-card-enhanced__action:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.alert-card-enhanced--info .alert-card-enhanced__action {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.alert-card-enhanced--info .alert-card-enhanced__action:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.alert-card-enhanced--success .alert-card-enhanced__action {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.alert-card-enhanced--success .alert-card-enhanced__action:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.alert-card-enhanced__action svg {
    transition: transform 0.3s ease;
}

.alert-card-enhanced__action:hover svg {
    transform: translateX(4px);
}

/* Responsive Alerts */
@media (max-width: 768px) {
    .alerts-section-enhanced {
        padding: 20px 0;
    }

    .alert-card-enhanced {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .alert-card-enhanced__icon-wrapper {
        align-self: flex-start;
    }

    .alert-card-enhanced__icon {
        width: 48px;
        height: 48px;
    }

    .alert-card-enhanced__icon svg {
        width: 22px;
        height: 22px;
    }

    .alert-card-enhanced__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .alert-card-enhanced__title {
        font-size: 1.0625rem;
    }

    .alert-card-enhanced__message {
        font-size: 0.9375rem;
    }

    .alert-card-enhanced__action {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .alert-card-enhanced {
        padding: 16px;
        margin-bottom: 12px;
    }

    .alert-card-enhanced__icon {
        width: 44px;
        height: 44px;
    }

    .alert-card-enhanced__icon svg {
        width: 20px;
        height: 20px;
    }

    .alert-card-enhanced__title {
        font-size: 1rem;
    }

    .alert-card-enhanced__message {
        font-size: 0.875rem;
    }

    .alert-badge {
        font-size: 0.6875rem;
        padding: 3px 10px;
    }

    .alert-card-enhanced__action {
        padding: 9px 16px;
        font-size: 0.875rem;
    }
}

/* NOTE: Header & Navigation styles are in header-enhanced.css */

/* ============================================
   ENHANCED FAQ SECTION
   ============================================ */

.faq-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 50%, #ffffff 100%);
    position: relative;
}

.faq-list-enhanced {
    max-width: 900px;
    margin: 0 auto 56px;
}

.faq-item-enhanced {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1.5px solid rgba(15, 118, 110, 0.1);
    box-shadow: 0 2px 12px rgba(15, 118, 110, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item-enhanced:hover {
    border-color: rgba(15, 118, 110, 0.2);
    box-shadow: 0 4px 20px rgba(15, 118, 110, 0.12);
    transform: translateY(-2px);
}

.faq-item-enhanced[open] {
    border-color: var(--color-primary, #0f766e);
    box-shadow: 0 6px 24px rgba(15, 118, 110, 0.15);
}

.faq-question-enhanced {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    cursor: pointer;
    list-style: none;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    color: rgba(0, 0, 0, 0.85);
    transition: all 0.3s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(240, 253, 250, 0) 100%);
}

.faq-question-enhanced::-webkit-details-marker {
    display: none;
}

.faq-item-enhanced:hover .faq-question-enhanced {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.02) 0%, rgba(20, 184, 166, 0.02) 100%);
}

.faq-item-enhanced[open] .faq-question-enhanced {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
    color: var(--color-primary, #0f766e);
    border-bottom: 1px solid rgba(15, 118, 110, 0.1);
}

.faq-question-enhanced__number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-primary, #0f766e) 0%, var(--color-primary-light, #14b8a6) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
    transition: all 0.3s ease;
}

.faq-item-enhanced:hover .faq-question-enhanced__number {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(15, 118, 110, 0.35);
}

.faq-question-enhanced__text {
    flex: 1;
    line-height: 1.5;
}

.faq-question-enhanced__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(15, 118, 110, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question-enhanced__icon svg {
    transition: all 0.3s ease;
    color: var(--color-primary, #0f766e);
}

.faq-item-enhanced[open] .faq-question-enhanced__icon {
    background: var(--color-primary, #0f766e);
    transform: rotate(45deg);
}

.faq-item-enhanced[open] .faq-question-enhanced__icon svg {
    color: white;
}

.faq-answer-enhanced {
    padding: 0 28px 28px 96px;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.7);
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer-enhanced p {
    margin: 0;
}

.faq-answer-enhanced strong {
    color: var(--color-primary, #0f766e);
    font-weight: 700;
}

/* FAQ CTA Card */
.faq-cta-enhanced {
    max-width: 900px;
    margin: 0 auto;
}

.faq-cta-enhanced__card {
    background: linear-gradient(135deg, var(--color-primary, #0f766e) 0%, var(--color-primary-light, #14b8a6) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.25);
    position: relative;
    overflow: hidden;
}

.faq-cta-enhanced__card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-cta-enhanced__icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-cta-enhanced__icon svg {
    color: white;
}

.faq-cta-enhanced__content {
    flex: 1;
}

.faq-cta-enhanced__title {
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif;
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    margin: 0 0 8px 0;
}

.faq-cta-enhanced__desc {
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.faq-cta-enhanced__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: white;
    color: var(--color-primary, #0f766e);
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-cta-enhanced__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    gap: 14px;
}

.faq-cta-enhanced__button svg {
    transition: all 0.3s ease;
}

.faq-cta-enhanced__button:hover svg {
    transform: translateX(4px);
}

/* Responsive FAQ Section */
@media (max-width: 768px) {
    .faq-section-enhanced {
        padding: 60px 0;
    }

    .faq-question-enhanced {
        padding: 20px 20px;
        gap: 16px;
        font-size: 1rem;
    }

    .faq-question-enhanced__number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .faq-question-enhanced__icon {
        width: 32px;
        height: 32px;
    }

    .faq-question-enhanced__icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer-enhanced {
        padding: 0 20px 20px 76px;
        font-size: 0.9375rem;
    }

    .faq-cta-enhanced__card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        text-align: center;
    }

    .faq-cta-enhanced__icon {
        width: 64px;
        height: 64px;
    }

    .faq-cta-enhanced__title {
        font-size: 1.5rem;
    }

    .faq-cta-enhanced__desc {
        font-size: 0.9375rem;
    }

    .faq-cta-enhanced__button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

@media (max-width: 480px) {
    .faq-question-enhanced {
        flex-wrap: wrap;
        padding: 16px;
    }

    .faq-question-enhanced__number {
        width: 36px;
        height: 36px;
        font-size: 0.9375rem;
    }

    .faq-question-enhanced__text {
        flex: 1;
        min-width: 0;
        font-size: 0.9375rem;
    }

    .faq-question-enhanced__icon {
        margin-left: auto;
    }

    .faq-answer-enhanced {
        padding: 0 16px 16px 16px;
        font-size: 0.875rem;
    }

    .faq-cta-enhanced__card {
        padding: 24px 20px;
    }

    .faq-cta-enhanced__icon {
        width: 56px;
        height: 56px;
    }

    .faq-cta-enhanced__icon svg {
        width: 28px;
        height: 28px;
    }

    .faq-cta-enhanced__title {
        font-size: 1.25rem;
    }
}

/* ============================================
   ENHANCED BUSINESS CTA SECTION
   ============================================ */

/* Override/enhance existing CTA section */
.cta-content-enhanced {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.cta-title {
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-desc {
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin: 0 0 48px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced CTA Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 1.0625rem;
    font-weight: 600;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 14px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Enhanced CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--color-primary, #0f766e);
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif;
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    gap: 16px;
}

.cta-btn-primary svg {
    transition: all 0.3s ease;
}

.cta-btn-primary:hover svg {
    transform: translateX(2px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 14px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-4px);
    gap: 16px;
}

.cta-btn-secondary svg {
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover svg {
    transform: translateX(2px);
}

/* Responsive Business CTA */
@media (max-width: 968px) {
    .cta-title {
        font-size: 2.5rem;
    }

    .cta-desc {
        font-size: 1.125rem;
    }

    .cta-features {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .cta-section-enhanced {
        padding: 80px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .cta-feature {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-eyebrow {
        font-size: 0.75rem;
        padding: 8px 20px;
        letter-spacing: 1px;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .cta-desc {
        font-size: 0.9375rem;
    }

    .cta-feature {
        font-size: 0.9375rem;
        padding: 12px 20px;
    }
}

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

.site-footer {
    background: linear-gradient(180deg, #001529 0%, #002140 100%);
    color: rgba(255, 255, 255, 0.85);
}

.web-footer-top {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
    gap: 64px !important;
    padding: 80px 0 60px !important;
}

/* Enhanced Footer Brand */
.footer-brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif !important;
    font-weight: 800 !important;
    font-size: 1.75rem !important;
}

.footer-brand svg {
    filter: drop-shadow(0 2px 8px rgba(20, 184, 166, 0.4)) !important;
    color: var(--color-primary-light, #14b8a6) !important;
}

.footer-brand span {
    background: linear-gradient(135deg, var(--color-primary-light, #14b8a6) 0%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.web-footer-top > div:first-child p {
    font-family: var(--font-body, 'Manrope'), sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 28px !important;
}

/* Enhanced Social Links */
.footer-social {
    display: flex !important;
    gap: 12px !important;
}

.footer-social a {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease !important;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--color-primary, #0f766e) 0%, var(--color-primary-light, #14b8a6) 100%) !important;
    border-color: var(--color-primary-light, #14b8a6) !important;
    color: white !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.3);
}

.footer-social svg {
    width: 20px !important;
    height: 20px !important;
}

/* Enhanced Footer Column Headings */
.web-footer-top h4 {
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.125rem !important;
    color: white !important;
    margin-bottom: 24px !important;
    position: relative;
    padding-bottom: 12px;
}

.web-footer-top h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary-light, #14b8a6) 0%, transparent 100%);
    border-radius: 2px;
}

/* Enhanced Footer Links */
.web-footer-top a {
    display: block !important;
    padding: 10px 0 !important;
    font-family: var(--font-body, 'Manrope'), sans-serif !important;
    font-size: 0.9375rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding-left: 0 !important;
}

.web-footer-top a:hover {
    color: var(--color-primary-light, #14b8a6) !important;
    padding-left: 8px !important;
}

.web-footer-top a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background: var(--color-primary-light, #14b8a6);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.web-footer-top a:hover::before {
    transform: translateY(-50%) scaleX(1);
}

/* Enhanced Contact Info */
.footer-contact p {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 10px 0 !important;
    font-family: var(--font-body, 'Manrope'), sans-serif !important;
    font-size: 0.9375rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.footer-contact span {
    font-size: 1.25rem !important;
    flex-shrink: 0;
    filter: grayscale(1) brightness(1.5);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.footer-contact a:hover {
    color: var(--color-primary-light, #14b8a6) !important;
    padding-left: 0 !important;
}

.footer-contact a:hover::before {
    display: none;
}

/* Enhanced Footer Bottom */
.web-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 32px 0 !important;
}

.web-footer-bottom .page-container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap;
    gap: 20px;
}

.web-footer-bottom p {
    font-family: var(--font-body, 'Manrope'), sans-serif !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
}

.footer-bottom-links {
    display: flex !important;
    gap: 28px !important;
}

.footer-bottom-links a {
    font-family: var(--font-body, 'Manrope'), sans-serif !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative;
    padding: 0 !important;
}

.footer-bottom-links a:hover {
    color: var(--color-primary-light, #14b8a6) !important;
    padding-left: 0 !important;
}

.footer-bottom-links a::before {
    display: none;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-primary-light, #14b8a6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-bottom-links a:hover::after {
    transform: scaleX(1);
}

/* Responsive Footer */
@media (max-width: 968px) {
    .web-footer-top {
        grid-template-columns: 1fr 1fr !important;
        gap: 48px !important;
    }
}

@media (max-width: 768px) {
    .web-footer-top {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 60px 0 40px !important;
    }

    .web-footer-bottom .page-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 16px !important;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 1.5rem !important;
    }

    .footer-brand svg {
        width: 28px;
        height: 28px;
    }

    .web-footer-top h4 {
        font-size: 1rem !important;
    }

    .footer-social {
        gap: 10px !important;
    }

    .footer-social a {
        width: 40px !important;
        height: 40px !important;
    }
}

/* ============================================
   ENHANCED NEWS & GUIDES SECTION
   ============================================ */

.news-section-enhanced {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.news-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card-enhanced {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(15, 118, 110, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.15);
    border-color: rgba(15, 118, 110, 0.2);
}

.news-card-enhanced__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-card-enhanced__image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
}

.news-card-enhanced__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.news-card-enhanced:hover .news-card-enhanced__image img {
    transform: scale(1.08);
}

.news-card-enhanced__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
}

.news-card-enhanced__placeholder svg {
    color: rgba(15, 118, 110, 0.3);
}

.news-card-enhanced__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.news-card-enhanced:hover .news-card-enhanced__overlay {
    opacity: 1;
}

.news-card-enhanced__category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--color-primary, #0f766e) 0%, var(--color-primary-light, #14b8a6) 100%);
    color: white;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    z-index: 2;
}

.news-card-enhanced__content {
    padding: 28px 24px;
}

.news-card-enhanced__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 16px;
}

.news-card-enhanced__meta svg {
    color: rgba(15, 118, 110, 0.6);
}

.news-card-enhanced__title {
    font-family: var(--font-display, 'Be Vietnam Pro'), sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.9);
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-card-enhanced:hover .news-card-enhanced__title {
    color: var(--color-primary, #0f766e);
}

.news-card-enhanced__excerpt {
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-enhanced__footer {
    padding-top: 16px;
    border-top: 1px solid rgba(15, 118, 110, 0.08);
}

.news-card-enhanced__read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-primary, #0f766e);
    transition: all 0.3s ease;
}

.news-card-enhanced:hover .news-card-enhanced__read-more {
    gap: 12px;
}

.news-card-enhanced__read-more svg {
    transition: transform 0.3s ease;
}

.news-card-enhanced:hover .news-card-enhanced__read-more svg {
    transform: translateX(4px);
}

/* Empty State */
.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.news-empty-state svg {
    color: rgba(15, 118, 110, 0.2);
    margin-bottom: 24px;
}

.news-empty-state p {
    font-family: var(--font-body, 'Manrope'), sans-serif;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* Responsive News Section */
@media (max-width: 968px) {
    .news-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news-card-enhanced__image {
        height: 200px;
    }

    .news-card-enhanced__title {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .news-section-enhanced {
        padding: 60px 0;
    }

    .news-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card-enhanced__image {
        height: 220px;
    }

    .news-card-enhanced__content {
        padding: 24px 20px;
    }

    .section-header-enhanced {
        flex-direction: column;
        gap: 24px;
    }

    .section-header-enhanced__text {
        text-align: center;
    }

    .btn-primary-enhanced {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .news-card-enhanced__image {
        height: 180px;
    }

    .news-card-enhanced__title {
        font-size: 1rem;
    }

    .news-card-enhanced__excerpt {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }

    .news-card-enhanced__content {
        padding: 20px 16px;
    }

    .news-card-enhanced__category {
        font-size: 0.6875rem;
        padding: 5px 12px;
    }
}
