.rec-manager-hero {
    background: transparent;
    padding: 100px 20px 80px;
    position: relative;
    overflow: visible;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-content a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}
.hero-content a:hover {
    text-decoration: underline;
}

.hero-header-group {
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem !important;
    font-weight: 600;
    color: white;
    margin-bottom: 15px !important;
    opacity: 0.95;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
}

.hero-content h1 span {
    color: #f5af3c;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
}

.learn-recs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f5af3c;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 16px;
    border: 2px solid rgba(245, 175, 60, 0.4);
    border-radius: 25px;
    background: rgba(245, 175, 60, 0.1);
    transition: all 0.3s ease;
}

.learn-recs-link:hover {
    background: rgba(245, 175, 60, 0.2);
    border-color: rgba(245, 175, 60, 0.6);
    color: #f9c56d;
    text-decoration: none;
    transform: translateX(3px);
}

.learn-recs-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}


.cta-container {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #f5af3c 0%, #f9c56d 100%);
    color: #006168;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(245, 175, 60, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 175, 60, 0.5);
    background: linear-gradient(135deg, #f9c56d 0%, #f5af3c 100%);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}





.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
    max-width: 400px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    padding-left: 8px;
    border-left: 3px solid rgba(245, 175, 60, 0.6);
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.feature-item:hover {
    border-left-color: #f5af3c;
    padding-left: 16px;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    stroke: #f5af3c;
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
}

.feature-item span {
    line-height: 1.4;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .svg-placeholder {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .rec-manager-hero {
        padding: 60px 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .svg-placeholder {
        height: 350px;
    }
}

/* Benefits Section - 2x2 Grid Layout */
.benefits-section-quadrant {
    background: transparent;
    padding: 80px 20px;
    position: relative;
    overflow: visible;
    margin-bottom: 50px;
}

.benefits-section-quadrant::before,
.benefits-section-quadrant::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}



.benefits-section-quadrant::after {
    width: 450px;
    height: 450px;
    background: #006168;
    bottom: 15%;
    right: 8%;
}

.benefits-section-quadrant .section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.benefits-section-quadrant .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.quadrant-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 950px;
    margin: 0 auto;
}

/* Central 3D Shape Container */
.central-3d-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 10;
    transition: filter 0.6s ease;
}

/* 3D Circle */
.shape-3d {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), inset -10px -10px 30px rgba(0, 0, 0, 0.05), inset 10px 10px 30px rgba(255, 255, 255, 0.3);
}

/* Dynamic radial glow that changes color based on hover */
.shape-3d::before {
    content: '';
    position: absolute;
    inset: -60px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--active-glow-color, transparent) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

/* Activate central glow on any hover */
.quadrant-container:has(.card-top-left:hover) .shape-3d::before,
.quadrant-container:has(.image-left:hover) .shape-3d::before,
.quadrant-container:has(.card-top-right:hover) .shape-3d::before,
.quadrant-container:has(.image-top:hover) .shape-3d::before,
.quadrant-container:has(.card-bottom-left:hover) .shape-3d::before,
.quadrant-container:has(.image-bottom:hover) .shape-3d::before,
.quadrant-container:has(.card-bottom-right:hover) .shape-3d::before,
.quadrant-container:has(.image-right:hover) .shape-3d::before {
    opacity: 1;
}

/* Set glow color based on which card is hovered */
.quadrant-container:has(.card-top-left:hover) .shape-3d,
.quadrant-container:has(.image-left:hover) .shape-3d {
    --active-glow-color: rgba(109, 233, 220, 0.6);
}

.quadrant-container:has(.card-top-right:hover) .shape-3d,
.quadrant-container:has(.image-top:hover) .shape-3d {
    --active-glow-color: rgba(109, 233, 220, 0.6);
}

.quadrant-container:has(.card-bottom-left:hover) .shape-3d,
.quadrant-container:has(.image-bottom:hover) .shape-3d {
    --active-glow-color: rgba(218, 165, 32, 0.6);
}

.quadrant-container:has(.card-bottom-right:hover) .shape-3d,
.quadrant-container:has(.image-right:hover) .shape-3d {
    --active-glow-color: rgba(218, 165, 32, 0.6);
}

/* Main Logo */
.main-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    z-index: 1;
}

.main-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.02);
}

/* Piece Overlays */
.segment-image {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 0 transparent);
}

.segment-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Piece overlay - hidden by default */
.piece-overlay {
    opacity: 0;
    filter: drop-shadow(0 0 0 transparent);
}

/* Image positions */
.image-top {
    top: -39px;
    left: 50%;
    transform: translateX(-46%);
    width: 160px;
    height: 176px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-right {
    top: 50%;
    right: 0px;
    transform: translateY(-35%);
    width: 94px;
    height: 105px;
    z-index: 100;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-bottom {
    bottom: -28px;
    left: 66%;
    transform: translateX(-78%);
    width: 158px;
    height: 145px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.image-left {
    top: 50%;
    left: 0px;
    transform: translateY(-57%);
    width: 95px;
    height: 100px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Enhanced hover with glow */
.quadrant-container:has(.card-top-left:hover) .image-left,
.quadrant-container:has(.image-left:hover) .image-left {
    opacity: 1;
    filter: 
        brightness(1.2)
        drop-shadow(0 0 20px rgba(0, 97, 104, 0.8))
        drop-shadow(0 0 40px rgba(0, 97, 104, 0.6))
        drop-shadow(0 0 60px rgba(0, 97, 104, 0.4));
    animation: pulse-glow-left 2s ease-in-out infinite;
}

.quadrant-container:has(.card-top-right:hover) .image-top,
.quadrant-container:has(.image-top:hover) .image-top {
    opacity: 1;
    filter: 
        brightness(1.2)
        drop-shadow(0 0 20px rgba(235, 110, 110, 0.8))
        drop-shadow(0 0 40px rgba(235, 110, 110, 0.6))
        drop-shadow(0 0 60px rgba(235, 110, 110, 0.4));
    animation: pulse-glow-top 2s ease-in-out infinite;
}

.quadrant-container:has(.card-bottom-left:hover) .image-bottom,
.quadrant-container:has(.image-bottom:hover) .image-bottom {
    opacity: 1;
    filter: 
        brightness(1.2)
        drop-shadow(0 0 20px rgba(218, 165, 32, 0.8))
        drop-shadow(0 0 40px rgba(218, 165, 32, 0.6))
        drop-shadow(0 0 60px rgba(218, 165, 32, 0.4));
    animation: pulse-glow-bottom 2s ease-in-out infinite;
}

.quadrant-container:has(.card-bottom-right:hover) .image-right,
.quadrant-container:has(.image-right:hover) .image-right {
    opacity: 1;
    filter: 
        brightness(1.2)
        drop-shadow(0 0 20px rgba(218, 165, 32, 0.8))
        drop-shadow(0 0 40px rgba(218, 165, 32, 0.6))
        drop-shadow(0 0 60px rgba(218, 165, 32, 0.4));
    animation: pulse-glow-right 2s ease-in-out infinite;
}

/* Connection lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.connection-line {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
    transition: all 0.6s ease;
    filter: drop-shadow(0 0 0 transparent);
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Animated connection lines on hover */
.quadrant-container:has(.card-top-left:hover) .line-to-top-left,
.quadrant-container:has(.image-left:hover) .line-to-top-left {
    stroke: rgba(123, 248, 236, 0.9);
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(123, 248, 236, 1))
            drop-shadow(0 0 15px rgba(123, 248, 236, 0.8));
    animation: line-flow 2s linear infinite;
}

.quadrant-container:has(.card-top-right:hover) .line-to-top-right,
.quadrant-container:has(.image-top:hover) .line-to-top-right {
    stroke: rgba(123, 248, 236, 0.9);
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(123, 248, 236, 1))
            drop-shadow(0 0 15px rgba(123, 248, 236, 0.8));
    animation: line-flow 2s linear infinite;
}

.quadrant-container:has(.card-bottom-left:hover) .line-to-bottom-left,
.quadrant-container:has(.image-bottom:hover) .line-to-bottom-left {
    stroke: rgba(245, 175, 60, 0.9);
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(245, 175, 60, 1))
            drop-shadow(0 0 15px rgba(245, 175, 60, 0.8));
    animation: line-flow 2s linear infinite;
}

.quadrant-container:has(.card-bottom-right:hover) .line-to-bottom-right,
.quadrant-container:has(.image-right:hover) .line-to-bottom-right {
    stroke: rgba(245, 175, 60, 0.9);
    stroke-width: 4;
    filter: drop-shadow(0 0 8px rgba(245, 175, 60, 1))
            drop-shadow(0 0 15px rgba(245, 175, 60, 0.8));
    animation: line-flow 2s linear infinite;
}

/* Glass Cards - 2x2 Grid Layout */
.benefit-card {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    cursor: pointer;
}



.benefit-card a{
    color: white;
    text-decoration: underline;

}

.glass-shape {
    position: relative;
    background: rgba(200, 200, 200, 0.35);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.6s ease;
    overflow: hidden;
    border-radius: 20px;
}

/* Shimmer effect */
.glass-shape::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.7s ease;
}

.benefit-card:hover .glass-shape::before {
    left: 100%;
}

/* Colored border on hover */
.glass-shape::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    padding: 3px;
    pointer-events: none;
    border-radius: 20px;
}

.benefit-card:hover .glass-shape {
    background: rgba(200, 200, 200, 0.45);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.benefit-card:hover .glass-shape::after {
    opacity: 1;
}

/* Card positions - 2x2 Grid */
.card-top-left {
    top: calc(50% - 300px);
    left: calc(50% - 400px);
    transform: translate(-50%, -50%);
    width: 550px;
    --card-color: #2f6d67;
    --card-color-light: #4eccc1;
}

.card-top-right {
    top: calc(50% - 300px);
    left: calc(50% + 400px);
    transform: translate(-50%, -50%);
    width: 550px;
    --card-color: #1ea99b;
    --card-color-light: #4eccc1;
}

.card-bottom-left {
    top: calc(50% + 300px);
    left: calc(50% - 400px);
    transform: translate(-50%, -50%);
    width: 550px;
    --card-color: #ecdbae;
    --card-color-light: #f4c542;
}

.card-bottom-right {
    top: calc(50% + 300px);
    left: calc(50% + 400px);
    transform: translate(-50%, -50%);
    width: 550px;
    --card-color: #fddda9;
    --card-color-light: #f9c56d;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.15);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.25),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
    fill: none;
    position: relative;
    z-index: 1;
}

.card-top-left .benefit-icon svg {
    stroke: #17887d;
}

.card-top-right .benefit-icon svg {
    stroke: #17887d;
}

.card-bottom-left .benefit-icon svg {
       stroke: #f5af3c;
}

.card-bottom-right .benefit-icon svg {
    stroke: #f5af3c;
}

.benefit-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: white;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}

/* Ambient glow */
.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        var(--active-glow-color, rgba(255, 255, 255, 0.15)),
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
    transition: all 0.8s ease;
    opacity: 0.5;
}

.quadrant-container:has(.benefit-card:hover) .ambient-glow {
    animation: ambient-pulse 3s ease-in-out infinite;
    opacity: 0.8;
}

/* Page Background */
.srec-page-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #035E5E 0%, #006168 35%, #2d7c81 65%, #189286 100%);
    position: relative;
    overflow: hidden;
}

/* Add animated background orbs to the wrapper */
.srec-page-bg::before,
.srec-page-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.srec-page-bg::before {
    width: 600px;
    height: 600px;
    background: #2dd4c4;
    top: 10%;
    right: 10%;
    animation: float 24s ease-in-out infinite;
}

.srec-page-bg::after {
    width: 500px;
    height: 500px;
    background: #2dd4c4;
    bottom: 15%;
    left: 5%;
    animation: float 24s ease-in-out infinite reverse;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(60px, -60px); }
    66% { transform: translate(-40px, 40px); }
}

@keyframes pulse-glow-top {
    0%, 100% {
        filter: 
            brightness(1.2)
            drop-shadow(0 0 20px rgba(30, 169, 155, 0.8))
            drop-shadow(0 0 40px rgba(30, 169, 155, 0.6))
            drop-shadow(0 0 60px rgba(30, 169, 155, 0.4));
    }
    50% {
        filter: 
            brightness(1.3)
            drop-shadow(0 0 30px rgba(30, 169, 155, 1))
            drop-shadow(0 0 50px rgba(30, 169, 155, 0.8))
            drop-shadow(0 0 80px rgba(30, 169, 155, 0.5));
    }
}

@keyframes pulse-glow-left {
    0%, 100% {
        filter: 
            brightness(1.2)
            drop-shadow(0 0 20px rgba(0, 97, 104, 0.8))
            drop-shadow(0 0 40px rgba(0, 97, 104, 0.6))
            drop-shadow(0 0 60px rgba(0, 97, 104, 0.4));
    }
    50% {
        filter: 
            brightness(1.3)
            drop-shadow(0 0 30px rgba(0, 97, 104, 1))
            drop-shadow(0 0 50px rgba(0, 97, 104, 0.8))
            drop-shadow(0 0 80px rgba(0, 97, 104, 0.5));
    }
}

@keyframes pulse-glow-bottom {
    0%, 100% {
        filter: 
            brightness(1.2)
            drop-shadow(0 0 20px rgba(218, 165, 32, 0.8))
            drop-shadow(0 0 40px rgba(218, 165, 32, 0.6))
            drop-shadow(0 0 60px rgba(218, 165, 32, 0.4));
    }
    50% {
        filter: 
            brightness(1.3)
            drop-shadow(0 0 30px rgba(218, 165, 32, 1))
            drop-shadow(0 0 50px rgba(218, 165, 32, 0.8))
            drop-shadow(0 0 80px rgba(218, 165, 32, 0.5));
    }
}

@keyframes pulse-glow-right {
    0%, 100% {
        filter: 
            brightness(1.2)
            drop-shadow(0 0 20px rgba(245, 175, 60, 0.8))
            drop-shadow(0 0 40px rgba(245, 175, 60, 0.6))
            drop-shadow(0 0 60px rgba(245, 175, 60, 0.4));
    }
    50% {
        filter: 
            brightness(1.3)
            drop-shadow(0 0 30px rgba(245, 175, 60, 1))
            drop-shadow(0 0 50px rgba(245, 175, 60, 0.8))
            drop-shadow(0 0 80px rgba(245, 175, 60, 0.5));
    }
}

@keyframes line-flow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
}

@keyframes card-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes ambient-pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .quadrant-container {
        max-width: 1200px;
        height: 850px;
    }
    
    .card-top-left,
    .card-top-right,
    .card-bottom-left,
    .card-bottom-right {
        width: 400px;
    }
    
    .card-top-left { 
        top: calc(50% - 270px);
        left: calc(50% - 350px);
    }
    .card-top-right { 
        top: calc(50% - 270px);
        left: calc(50% + 350px);
    }
    .card-bottom-left { 
        top: calc(50% + 270px);
        left: calc(50% - 350px);
    }
    .card-bottom-right { 
        top: calc(50% + 270px);
        left: calc(50% + 350px);
    }
}

@media (max-width: 1200px) {
    .quadrant-container {
        height: 800px;
    }
    
    .card-top-left,
    .card-top-right,
    .card-bottom-left,
    .card-bottom-right {
        width: 360px;
    }
    
    .card-top-left { 
        top: calc(50% - 250px);
        left: calc(50% - 320px);
    }
    .card-top-right { 
        top: calc(50% - 250px);
        left: calc(50% + 320px);
    }
    .card-bottom-left { 
        top: calc(50% + 250px);
        left: calc(50% - 320px);
    }
    .card-bottom-right { 
        top: calc(50% + 250px);
        left: calc(50% + 320px);
    }
    
    .glass-shape {
        padding: 30px 25px;
    }
}

@media (max-width: 992px) {
    .quadrant-container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding: 40px 20px;
    }
    
    .benefit-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
    }
    
    .central-3d-shape {
        display: none;
    }
    
    .connection-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .quadrant-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #006168 0%, #035E5E 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 169, 155, 0.2) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.contact-cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 175, 60, 0.15) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.contact-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-cta-container:hover .contact-cta-icon {
    background: rgba(245, 175, 60, 0.2);
    border-color: rgba(245, 175, 60, 0.5);
    transform: scale(1.1);
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.contact-cta-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: white;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-cta-buttons .cta-button {
    box-shadow: none !important;
}

.contact-cta-buttons .cta-button:hover {
    box-shadow: none !important;
}



.cta-primary {
    background: linear-gradient(135deg, #f5af3c 0%, #f9c56d 100%);
    color: #006168;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #f9c56d 0%, #f5af3c 100%);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .learn-recs-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .contact-cta-section {
        padding: 60px 20px;
    }
    
    .contact-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-cta-section p {
        font-size: 1rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-header-group {
        margin-bottom: 20px;
    }
    
    .learn-recs-link {
        width: 100%;
        justify-content: center;
    }
}

 .rec-process-container {
                max-width: 700px;
                margin: 0 auto;
                padding: 40px 20px;
                position: relative;
            }

            .progress-bar-container {
                position: absolute;
                left: 20px;
                top: 100px;
                bottom: 100px;
                width: 8px;
            }

            .progress-bar-bg {
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 4px;
                position: relative;
                overflow: hidden;
            }

            .progress-bar-fill {
                width: 100%;
                height: 100%;
                background: linear-gradient(to bottom, var(--fe-primary-green) 0%, var(--fe-primary-gold) 50%, var(--fe-dark-gold) 100%);
                border-radius: 4px;
            }

            .progress-dot {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                width: 20px;
                height: 20px;
                border-radius: 50%;
                border: 3px solid white;
                z-index: 2;
                opacity: 0.4;
                transition: opacity 0.3s ease;
            }

            .progress-dot-1 {
                top: 0;
                background: var(--fe-primary-green);
            }

            .progress-dot-2 {
                top: 50%;
                transform: translate(-50%, -50%);
                background: var(--fe-primary-gold);
            }

            .progress-dot-3 {
                bottom: 0;
                background: var(--fe-dark-gold);
            }

            /* Animated active dot */
            .progress-dot-active {
                position: absolute;
                left: 50%;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                border: 4px solid white;
                z-index: 3;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
                background: var(--fe-primary-green);
                top: 0;
                transform: translateX(-50%);
            }

            .progress-dot-active.active-2 {
                top: 50%;
                transform: translate(-50%, -50%);
                background: var(--fe-primary-gold);
                box-shadow: 0 0 20px rgba(245, 175, 60, 0.5);
            }

            .progress-dot-active.active-3 {
                top: 100%;
                transform: translate(-50%, -100%);
                background: var(--fe-dark-gold);
                box-shadow: 0 0 20px rgba(205, 146, 52, 0.5);
            }

            .process-cards {
                margin-left: 60px;
            }

            .process-card {
                background: rgba(255, 255, 255, 0.05);
                border: 2px solid rgba(255, 255, 255, 0.3);
                border-radius: 12px;
                padding: 30px;
                margin-bottom: 30px;
                display: flex;
                align-items: center;
                gap: 25px;
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .process-card:hover {
                background: rgba(255, 255, 255, 0.08);
                border-color: rgba(255, 255, 255, 0.5);
                transform: translateX(5px);
            }

            .process-card.active {
                background: rgba(255, 255, 255, 0.12);
                border-color: rgba(255, 255, 255, 0.6);
            }

            .process-card-1 {
                background: rgba(30, 169, 155, 0.1);
                border-color: rgba(30, 169, 155, 0.3);
            }

            .process-card-1:hover,
            .process-card-1.active {
                background: rgba(30, 169, 155, 0.15);
                border-color: rgba(30, 169, 155, 0.5);
            }

            .process-card-2 {
                background: rgba(245, 175, 60, 0.1);
                border-color: rgba(245, 175, 60, 0.3);
            }

            .process-card-2:hover,
            .process-card-2.active {
                background: rgba(245, 175, 60, 0.15);
                border-color: rgba(245, 175, 60, 0.5);
            }

            .process-card-3 {
                background: rgba(205, 146, 52, 0.1);
                border-color: rgba(205, 146, 52, 0.3);
            }

            .process-card-3:hover,
            .process-card-3.active {
                background: rgba(205, 146, 52, 0.15);
                border-color: rgba(205, 146, 52, 0.5);
            }

            .card-number {
                flex-shrink: 0;
                width: 80px;
                height: 80px;
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                border: 2px solid;
                position: relative;
                transition: all 0.3s ease;
            }

            .process-card:hover .card-number,
            .process-card.active .card-number {
                transform: scale(1.05);
            }

            .card-number-1 {
                background: rgba(30, 169, 155, 0.2);
                border-color: var(--fe-primary-green);
            }

            .card-number-2 {
                background: rgba(245, 175, 60, 0.2);
                border-color: var(--fe-primary-gold);
            }

            .card-number-3 {
                background: rgba(205, 146, 52, 0.2);
                border-color: var(--fe-dark-gold);
            }

            .card-number-digit {
                font-family: 'Cinzel', serif;
                font-size: 32px;
                font-weight: 600;
                color: white;
                line-height: 1;
                margin-top: 4px;
                letter-spacing: 1px;
            }

            .card-number-label {
                font-size: 11px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

            .card-number-label-1 { color: var(--fe-primary-green); }
            .card-number-label-2 { color: var(--fe-primary-gold); }
            .card-number-label-3 { color: var(--fe-dark-gold); }

            .card-content {
                flex: 1;
                display: flex;
                align-items: center;
                gap: 20px;
            }

            .card-icon {
                flex-shrink: 0;
                transition: transform 0.3s ease;
            }

            .process-card:hover .card-icon,
            .process-card.active .card-icon {
                transform: scale(1.1);
            }

            .card-text {
                color: white;
                font-size: 18px;
                line-height: 1.4;
            }

            @media (max-width: 768px) {
                .progress-bar-container {
                    display: none;
                }
                
                .process-cards {
                    margin-left: 0;
                }
                
                .process-card {
                    flex-direction: column;
                    text-align: center;
                }
                
                .card-content {
                    flex-direction: column;
                }
                
                .card-text {
                    font-size: 16px;
                }
            }