:root {
    --rec-primary: #0F172A;
    --rec-accent: #10B981; /* Emerald Green - Growth/Talent */
    --rec-accent-2: #3B82F6; /* Blue */
    --rec-text: #475569;
    --rec-dark: #1E293B;
    --rec-bg: #F8FAFC;
    --rec-white: #FFFFFF;
    --rec-radius: 24px;
    --rec-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.rec-solutions-wrapper {
    background-color: var(--rec-bg);
    color: var(--rec-primary);
    font-family: 'Outfit', sans-serif;
    padding-bottom: 100px;
    overflow-x: hidden;
    position: relative;
}

/* 1. Ambient Background */
.rec-ambient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

/* 2. Hero Section */
.rec-hero-section {
    padding: 100px 5% 60px;
    position: relative;
    z-index: 2;
}

.rec-hero-header {
    max-width: 800px;
}

.rec-hero-tag {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--rec-accent);
    margin-bottom: 15px;
    display: block;
}

.rec-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--rec-dark);
    margin: 0;
}

.rec-hero-title .highlight-text {
    background: linear-gradient(135deg, var(--rec-accent), var(--rec-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 3. Introduction Section */
.rec-intro-section {
    padding: 40px 5%;
    position: relative;
    z-index: 2;
    background-color: transparent;
    background-image: 
        radial-gradient(at 0% 0%, hsla(160, 84%, 95%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(217, 91%, 95%, 1) 0, transparent 50%), 
        radial-gradient(at 100% 100%, hsla(142, 71%, 95%, 1) 0, transparent 50%), 
        radial-gradient(at 0% 100%, hsla(200, 95%, 95%, 1) 0, transparent 50%);
    background-size: 200% 200%;
    animation: recMeshFlow 20s ease infinite;
}

@keyframes recMeshFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}

.rec-intro-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 253, 244, 0.8) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--rec-radius);
    padding: 60px;
    box-shadow: 
        0 20px 50px rgba(15, 23, 42, 0.04),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.rec-intro-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--rec-dark);
}

.rec-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--rec-text);
    margin-bottom: 20px;
}

.rec-expertise-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.rec-expertise-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    color: var(--rec-dark);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.03);
    transition: all 0.3s ease;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rec-expertise-list li:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--rec-accent);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

.rec-expertise-list i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rec-accent), var(--rec-accent-2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: var(--rec-transition);
}

.rec-expertise-list li:hover i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* 4. Solutions Grid */
.rec-grid-section {
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.rec-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.rec-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--rec-radius);
    padding: 0;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    transition: var(--rec-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.rec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border-color: rgba(255, 255, 255, 1);
}

.rec-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    padding: 30px 40px;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    position: relative;
    overflow: hidden;
}

.rec-card-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--rec-accent), var(--rec-accent-2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    transition: var(--rec-transition);
    position: relative;
    z-index: 2;
}

.rec-card:hover .rec-card-icon {
    transform: scale(1.05) rotate(-5deg);
}

.rec-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    color: var(--rec-dark);
    line-height: 1.3;
    z-index: 2;
}

.rec-card-body {
    padding: 30px 40px 40px;
}

.rec-card-body p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--rec-text);
    margin: 0;
}

.rec-card-watermark {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(16, 185, 129, 0.05);
    pointer-events: none;
    z-index: 1;
    animation: recWatermarkFlow 15s linear infinite;
}

@keyframes recWatermarkFlow {
    0% { transform: translateY(-50%) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-55%) rotate(5deg); opacity: 0.5; }
    100% { transform: translateY(-50%) rotate(0deg); opacity: 0.3; }
}

/* CTA Card */
.rec-card-cta {
    grid-column: span 2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    border: none;
    position: relative;
    overflow: hidden;
    padding: 100px 60px;
    margin-top: 30px;
    border-radius: var(--rec-radius);
}

.rec-cta-map-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.4)), url('assets/recruitment-meeting-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
    pointer-events: none;
    transition: transform 10s ease;
}

.rec-card-cta:hover .rec-cta-map-bg {
    transform: scale(1.1);
}

.rec-cta-content {
    position: relative;
    z-index: 10;
}

.rec-card-cta h3 { 
    color: white; 
    font-size: 2.5rem; 
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rec-card-cta p { 
    color: rgba(255, 255, 255, 0.95); 
    font-size: 1.2rem; 
    margin-bottom: 35px; 
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* 5. Why Use GES Section */
.rec-why-section {
    padding: 60px 5%;
    background-color: var(--rec-bg);
    background-image: radial-gradient(var(--rec-accent) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    position: relative;
    z-index: 2;
}

.rec-why-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.rec-why-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--rec-dark);
    line-height: 1.1;
    margin-top: 10px;
}

.rec-why-grid {
    display: none;
}

.rec-why-container {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 50px;
    border-radius: var(--rec-radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rec-why-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rec-accent), var(--rec-accent-2));
}
.rec-why-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--rec-text);
    margin: 0;
    text-align: justify;
    hyphens: auto;
    word-break: break-word;
}

@media (max-width: 768px) {
    .rec-why-section { padding: 10px 5%; }
    .rec-why-header h2 { font-size: 1.8rem; }
    .rec-why-container { padding: 35px 20px; }
    .rec-why-content p { font-size: 1rem; line-height: 1.7; }
}

.rec-btn-white {
    background: white;
    color: var(--rec-accent);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--rec-transition);
    border: none;
}

.rec-btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
}

@media (max-width: 1024px) {
    .rec-solutions-wrapper { padding-bottom: 40px; }
    .rec-hero-section { padding: 50px 5% 30px; }
    .rec-intro-section { padding: 40px 5%; }
    .rec-intro-container { grid-template-columns: 1fr; padding: 40px 30px; gap: 40px; }
    
    .rec-expertise-list ul {
        grid-template-columns: 1fr;
    }

    .rec-cards-grid {
        grid-template-columns: 1fr;
    }
    .rec-card-header { padding: 25px 30px; }
    .rec-card-body { padding: 25px 30px 30px; }

    .rec-card-cta {
        grid-column: span 1;
        padding: 60px 20px;
    }
    .rec-card-cta h3 { font-size: 1.8rem; }
    .rec-card-cta p { font-size: 1.1rem; }
}
