.elementor-443 .elementor-element.elementor-element-aad8784{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-443 .elementor-element.elementor-element-a63b066{width:100%;max-width:100%;}/* Start custom CSS for html, class: .elementor-element-a63b066 */.overflow-x {
    overflow-x: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #0d1117;
    overflow-x: hidden;
}

/* Highlight */
.highlight {
    color: #EFB810;
}

/* Section Label */
.section-label {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: #EFB810;
    color: #0d1117;
}

.btn-primary:hover {
    background: #d4a00e;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #EFB810;
    color: #EFB810;
}


/* Hero Section */
.hero {
    padding-left: 80px;
    padding-right: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    padding: 8rem 5% 4rem;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

.hero-content {
    flex: 1;
    max-width: 700px;
    margin-right: 0px;
    animation: fadeInLeft 1s ease-out forwards;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #fff;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.hero-title:hover {
    background-position: right center;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: #EFB810;
    margin-bottom: 1.5rem;
    font-style: italic;
    animation: fadeInUp 0.8s ease-out 0.4s both, glowPulse 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(239, 184, 16, 0.3);
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(239, 184, 16, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(239, 184, 16, 0.5), 0 0 60px rgba(239, 184, 16, 0.2);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.7;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid transparent;
    transition: all 0.4s ease;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, #EFB810, rgba(239, 184, 16, 0.3));
    transform: scaleY(0);
    transform-origin: top;
    animation: lineGrow 0.8s ease-out 1s forwards;
}

@keyframes lineGrow {
    0% {
        transform: scaleY(0);
    }
    100% {
        transform: scaleY(1);
    }
}

.hero-description:hover {
    color: #bbb;
    padding-left: 25px;
}

.hero-credibility {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
    display: inline-block;
}

.hero-credibility::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #EFB810, transparent);
    animation: lineExpand 1s ease-out 1.2s forwards;
}

@keyframes lineExpand {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.hero-ctas .btn {
    position: relative;
    overflow: hidden;
}

.hero-ctas .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-ctas .btn:hover::before {
    left: 100%;
}

.hero-ctas .btn-primary {
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 184, 16, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(239, 184, 16, 0.2);
    }
}

.hero-image {
    overflow: hidden;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Animated rotating gradient ring */
.hero-image::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(239, 184, 16, 0.4) 60deg,
        transparent 120deg,
        rgba(239, 184, 16, 0.2) 180deg,
        transparent 240deg,
        rgba(239, 184, 16, 0.3) 300deg,
        transparent 360deg
    );
    border-radius: 50%;
    z-index: 0;
    animation: rotateGlow 8s linear infinite;
    filter: blur(30px);
}

/* Inner glow pulse */
.hero-image::after {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Image container for border effect */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
    padding: 4px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.5), rgba(239, 184, 16, 0.1), rgba(239, 184, 16, 0.3));
    background-size: 200% 200%;
    animation: gradientBorder 4s ease infinite, zoomIn 1s ease-out forwards;
    box-shadow: 
        0 0 40px rgba(239, 184, 16, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(239, 184, 16, 0.1);
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-image img {
    max-width: 650px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    filter: grayscale(10%);
    transition: all 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-wrapper:hover {
    box-shadow: 
        0 0 60px rgba(239, 184, 16, 0.35),
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(239, 184, 16, 0.15);
}

.hero-image-wrapper:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}


/* Intro Section */
.intro {
    padding: 6rem 5%;
    background: #0d1117;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.intro-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.intro-left {
    flex: 0 0 350px;
}

.intro-left .section-label {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.intro-left .section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #EFB810;
    animation: expandLine 1s ease-out forwards;
}

@keyframes expandLine {
    0% { width: 0; }
    100% { width: 30px; }
}

.intro-left h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
}

.intro-left h2 .highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 3s linear infinite;
}

@keyframes shimmerText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.intro-right {
    flex: 1;
    display: flex;
    gap: 2rem;
}

.intro-line {
    width: 3px;
    min-height: 150px;
    background: linear-gradient(180deg, #EFB810 0%, rgba(239, 184, 16, 0.3) 50%, rgba(239, 184, 16, 0.1) 100%);
    flex-shrink: 0;
    position: relative;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
    animation: linePulse 2s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(239, 184, 16, 0.5);
    }
}

.intro-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(180deg, #EFB810, transparent);
    border-radius: 2px;
    animation: lineFlow 2s ease-in-out infinite;
}

@keyframes lineFlow {
    0% { top: 0; opacity: 1; }
    100% { top: calc(100% - 30px); opacity: 0; }
}

.intro-text {
    position: relative;
}

.intro-text p {
    color: #999;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
    position: relative;
    transition: all 0.4s ease;
}

.intro-text p:hover {
    color: #bbb;
    transform: translateX(5px);
}

.intro-text p .highlight {
    color: #EFB810;
    font-weight: 500;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 20px rgba(239, 184, 16, 0.4);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(239, 184, 16, 0.4);
    }
    50% {
        text-shadow: 0 0 30px rgba(239, 184, 16, 0.6), 0 0 50px rgba(239, 184, 16, 0.3);
    }
}

.intro-text p .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #EFB810, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.intro-text p:hover .highlight::after {
    transform: scaleX(1);
}


/* Pillars Section */
.pillars {
    padding: 6rem 5%;
    background: #0a0d12;
}

.pillars-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pillars-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.pillar-card {
    background: #161b22;
    padding: 2.5rem;
    border-radius: 16px;
    border: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* Animated gradient border */
.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 40%, rgba(239, 184, 16, 0.3) 50%, transparent 60%);
    background-size: 300% 300%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pillar-card:hover::after {
    opacity: 1;
    animation: borderGlow 2s linear infinite;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Dark overlay */
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.92) 0%, rgba(22, 27, 34, 0.95) 100%);
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pillar-card > * {
    position: relative;
    z-index: 2;
}

/* Shine effect */
.pillar-card .pillar-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(239, 184, 16, 0.1) 50%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
}

.pillar-card:hover .pillar-icon::after {
    transform: translateX(100%) rotate(45deg);
}

.pillar-card:nth-child(1) {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/Roberto-MenA©ndez-TEDx-2022.png');
}

.pillar-card:nth-child(2) {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/Robots-Catering-en-Fiesta-scaled.jpg');
}

.pillar-card:nth-child(3) {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/Roberto-Menendez-TED-1.png');
}

.pillar-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(239, 184, 16, 0.15),
        inset 0 0 60px rgba(239, 184, 16, 0.03);
}

.pillar-card:hover::before {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.4) 0%, rgba(22, 27, 34, 0.6) 100%);
}

/* Icon glow on hover */
.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(239, 184, 16, 0.5));
}

/* CTA arrow animation */
.pillar-card:hover .pillar-cta {
    letter-spacing: 1px;
}

.pillar-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.15) 0%, rgba(239, 184, 16, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(239, 184, 16, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.pillar-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
    transition: left 0.6s ease;
}

.pillar-card:hover .pillar-icon::before {
    left: 100%;
}

.pillar-icon i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(239, 184, 16, 0.3));
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.25) 0%, rgba(239, 184, 16, 0.1) 100%);
    border-color: rgba(239, 184, 16, 0.4);
    box-shadow: 0 8px 25px rgba(239, 184, 16, 0.2);
}

.pillar-card:hover .pillar-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(239, 184, 16, 0.5));
}

.pillar-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.invite-tag {
    font-size: 0.7rem;
    background: rgba(239, 184, 16, 0.2);
    color: #EFB810;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 500;
}

.pillar-card p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pillar-cta {
    color: #EFB810;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}

.pillar-cta:hover {
    color: #fff;
}


/* Featured Pillar */
.pillar-featured {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    transition: all 0.5s ease;
}

.pillar-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pillar-featured:hover {
    border-color: rgba(239, 184, 16, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(239, 184, 16, 0.1);
    transform: translateY(-5px);
}

.pillar-featured-content {
    flex: 1;
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.pillar-featured-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #fff;
    position: relative;
    display: inline-block;
}

.pillar-featured-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #EFB810, rgba(239, 184, 16, 0.3));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.pillar-featured:hover .pillar-featured-content h3::after {
    width: 100px;
}

.pillar-featured-content p {
    color: #888;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.pillar-featured:hover .pillar-featured-content p {
    color: #aaa;
}

.pillar-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.pillar-features span {
    color: #EFB810;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding-left: 0;
    transition: all 0.4s ease;
    text-shadow: 0 0 15px rgba(239, 184, 16, 0.3);
}

.pillar-features span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #EFB810;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px rgba(239, 184, 16, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.pillar-features span:nth-child(2)::before {
    animation-delay: 0.3s;
}

.pillar-features span:nth-child(3)::before {
    animation-delay: 0.6s;
}

@keyframes dotPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 184, 16, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 184, 16, 0.8);
        transform: scale(1.2);
    }
}

.pillar-featured-content .pillar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.pillar-featured-content .pillar-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EFB810;
    transition: width 0.4s ease;
}

.pillar-featured-content .pillar-cta:hover::after {
    width: 100%;
}

.pillar-featured-image {
    flex: 0 0 450px;
    position: relative;
    overflow: hidden;
}

.pillar-featured-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #161b22 0%, transparent 30%);
    z-index: 2;
    pointer-events: none;
}

.pillar-featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.1) 0%, transparent 50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.pillar-featured:hover .pillar-featured-image::after {
    opacity: 1;
}

.pillar-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(40%) brightness(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.05);
}

.pillar-featured:hover .pillar-featured-image img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}


/* Why Rob Section */
.why-rob {
    padding: 5rem 5%;
    background: #0d1117;
    position: relative;
    overflow: hidden;
}

.why-rob::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.05) 0%, transparent 70%);
    transform: translateY(-50%);
    pointer-events: none;
    animation: ambientGlow 8s ease-in-out infinite;
}

@keyframes ambientGlow {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-50%) scale(1.2);
        opacity: 1;
    }
}

.why-rob-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-rob-left {
    flex: 0 0 400px;
}

.why-rob-left .section-label {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(239, 184, 16, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(239, 184, 16, 0.2);
    margin-bottom: 1.5rem;
    animation: labelPulse 3s ease-in-out infinite;
}

@keyframes labelPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 184, 16, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 184, 16, 0.2);
    }
}

.why-rob-left h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.why-rob-left h2 .highlight {
    display: block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerName 3s linear infinite;
    position: relative;
}

@keyframes shimmerName {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.why-rob-intro {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid transparent;
    background: linear-gradient(#0d1117, #0d1117) padding-box,
                linear-gradient(180deg, #EFB810, rgba(239, 184, 16, 0.2)) border-box;
    transition: all 0.4s ease;
}

.why-rob-intro:hover {
    color: #bbb;
    padding-left: 2rem;
}

.why-rob-right {
    flex: 1;
}

.why-rob-block {
    margin-bottom: 1.5rem;
    position: relative;
}

.why-rob-block h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.why-rob-block h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #EFB810, transparent);
    transition: width 0.4s ease;
}

.why-rob-block:hover h4::after {
    width: 100%;
}

.why-rob-block ul {
    list-style: none;
    padding-left: 0;
}

.why-rob-block li {
    color: #888;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.why-rob-block li:hover {
    color: #bbb;
    background: rgba(239, 184, 16, 0.05);
    padding-left: 2.5rem;
}

.why-rob-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #EFB810, rgba(239, 184, 16, 0.5));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(239, 184, 16, 0.4);
    transition: all 0.3s ease;
}

.why-rob-block li:hover::before {
    transform: translateY(-50%) scale(1.3);
    box-shadow: 0 0 20px rgba(239, 184, 16, 0.6);
}

.why-rob-closing {
    color: #EFB810;
    font-size: 1rem;
    font-style: italic;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.08) 0%, rgba(239, 184, 16, 0.02) 100%);
    border-radius: 12px;
    border-left: 4px solid #EFB810;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.why-rob-closing::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.1), transparent);
    animation: shineSlide 3s ease-in-out infinite;
}

@keyframes shineSlide {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.why-rob-closing:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(239, 184, 16, 0.1);
}


/* Quote Section */
.quote-section {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 50%, #161b22 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 25rem;
    font-family: Georgia, serif;
    color: rgba(239, 184, 16, 0.03);
    line-height: 1;
    pointer-events: none;
    animation: quoteFloat 6s ease-in-out infinite;
}

.quote-section::after {
    content: '"';
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    font-size: 25rem;
    font-family: Georgia, serif;
    color: rgba(239, 184, 16, 0.03);
    line-height: 1;
    pointer-events: none;
    animation: quoteFloat 6s ease-in-out infinite reverse;
}

@keyframes quoteFloat {
    0%, 100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-55%) scale(1.05);
        opacity: 1;
    }
}

.quote-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.quote-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: lineGlowQuote 2s ease-in-out infinite;
}

.quote-content::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: lineGlowQuote 2s ease-in-out infinite 0.5s;
}

@keyframes lineGlowQuote {
    0%, 100% {
        width: 80px;
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(239, 184, 16, 0.3);
    }
    50% {
        width: 120px;
        opacity: 1;
        box-shadow: 0 0 25px rgba(239, 184, 16, 0.6);
    }
}

.quote-text {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    position: relative;
    letter-spacing: 0.5px;
}

.quote-text .highlight {
    color: #EFB810;
    font-weight: 500;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerHighlight 3s linear infinite;
    text-shadow: none;
}

.quote-text .highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes shimmerHighlight {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes underlineGlow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(239, 184, 16, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(239, 184, 16, 0.6);
    }
}

/* Ambient particles effect */
.quote-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #EFB810;
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s ease-in-out infinite;
}

.quote-section .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.quote-section .particle:nth-child(2) { left: 20%; top: 70%; animation-delay: 1s; }
.quote-section .particle:nth-child(3) { left: 80%; top: 30%; animation-delay: 2s; }
.quote-section .particle:nth-child(4) { left: 90%; top: 80%; animation-delay: 3s; }
.quote-section .particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 4s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 0.6;
    }
}


/* Who For Section */
.who-for {
    padding: 6rem 5%;
    background: #0a0d12;
    position: relative;
    overflow: hidden;
}

.who-for::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.03) 0%, transparent 60%);
    pointer-events: none;
    animation: centerPulse 6s ease-in-out infinite;
}

@keyframes centerPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

.who-for-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.who-for-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.who-for-content h2 .highlight {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerFor 3s linear infinite;
    position: relative;
}

.who-for-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlinePulse 2s ease-in-out infinite;
}

@keyframes shimmerFor {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes underlinePulse {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.who-for-intro {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
}

.who-for-intro::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.5), transparent);
    margin: 1.5rem auto 0;
}

.who-for-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.who-for-item {
    background: linear-gradient(135deg, #161b22 0%, #1a1f26 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    background-position: center;
}

/* Card backgrounds */
.who-for-item[data-bg="ceo"] {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/DSC06703-scaled.jpg');
}

.who-for-item[data-bg="board"] {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/DSC06748-scaled.jpg');
}

.who-for-item[data-bg="gov"] {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/DSC06707-scaled.jpg');
}

.who-for-item[data-bg="investor"] {
    background-image: url('https://robfutura.com/wp-content/uploads/2026/01/DSC06710-scaled.jpg');
}

/* Dark overlay */
.who-for-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.92) 0%, rgba(22, 27, 34, 0.95) 100%);
    z-index: 1;
    transition: all 0.5s ease;
}

/* Shine sweep effect */
.who-for-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(239, 184, 16, 0.15) 50%, transparent 60%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.8s ease;
    z-index: 4;
}

.who-for-item:hover::before {
    background: linear-gradient(180deg, rgba(13, 17, 23, 0.7) 0%, rgba(22, 27, 34, 0.8) 100%);
}

.who-for-item:hover::after {
    transform: translateX(100%) rotate(45deg);
}

.who-for-item:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(239, 184, 16, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(239, 184, 16, 0.15),
        inset 0 0 40px rgba(239, 184, 16, 0.05);
}

.who-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(239, 184, 16, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.who-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.4), transparent);
    transition: left 0.6s ease;
}

.who-for-item:hover .who-icon::before {
    left: 100%;
}

.who-icon i {
    font-size: 2rem;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(239, 184, 16, 0.4));
    transition: all 0.4s ease;
    animation: iconShimmer 3s linear infinite;
}

@keyframes iconShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.who-for-item:hover .who-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.3) 0%, rgba(239, 184, 16, 0.1) 100%);
    border-color: rgba(239, 184, 16, 0.5);
    box-shadow: 
        0 10px 30px rgba(239, 184, 16, 0.3),
        inset 0 0 20px rgba(239, 184, 16, 0.1);
}

.who-for-item:hover .who-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 15px rgba(239, 184, 16, 0.6));
}

.who-for-item p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.who-for-item:hover p {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.who-for-closing {
    color: #EFB810;
    font-size: 1.15rem;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.08) 0%, rgba(239, 184, 16, 0.02) 100%);
    border-radius: 30px;
    border: 1px solid rgba(239, 184, 16, 0.15);
    transition: all 0.4s ease;
    animation: closingGlow 3s ease-in-out infinite;
}

@keyframes closingGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(239, 184, 16, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(239, 184, 16, 0.2);
    }
}

.who-for-closing:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.12) 0%, rgba(239, 184, 16, 0.05) 100%);
    border-color: rgba(239, 184, 16, 0.3);
}


/* Final CTA Section */
.final-cta {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #0a0d12 0%, #0d1117 50%, #0a0d12 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 184, 16, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 1;
    }
}

.final-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 184, 16, 0.3), transparent);
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.final-cta-content h2 .highlight {
    display: inline-block;
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 30%, #EFB810 60%, #f5d060 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerCTA 4s linear infinite;
    position: relative;
}

@keyframes shimmerCTA {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.final-cta-content h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #EFB810, transparent);
    border-radius: 2px;
    animation: underlinePulseCTA 2s ease-in-out infinite;
}

@keyframes underlinePulseCTA {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.7);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.final-cta-content p {
    color: #888;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
}

.final-cta-content p::before,
.final-cta-content p::after {
    content: '✦';
    color: rgba(239, 184, 16, 0.3);
    font-size: 0.8rem;
    margin: 0 0.5rem;
    animation: starTwinkle 2s ease-in-out infinite;
}

.final-cta-content p::after {
    animation-delay: 1s;
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Awesome Button Styles */
.final-cta-buttons .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.final-cta-buttons .btn-primary {
    background: linear-gradient(135deg, #EFB810 0%, #f5d060 50%, #EFB810 100%);
    background-size: 200% auto;
    color: #0d1117;
    border: none;
    box-shadow: 
        0 5px 20px rgba(239, 184, 16, 0.4),
        0 0 40px rgba(239, 184, 16, 0.2);
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% {
        box-shadow: 
            0 5px 20px rgba(239, 184, 16, 0.4),
            0 0 40px rgba(239, 184, 16, 0.2);
    }
    50% {
        box-shadow: 
            0 8px 30px rgba(239, 184, 16, 0.6),
            0 0 60px rgba(239, 184, 16, 0.3);
    }
}

.final-cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.final-cta-buttons .btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(239, 184, 16, 0.5),
        0 0 80px rgba(239, 184, 16, 0.3);
}

.final-cta-buttons .btn-primary:hover::before {
    left: 100%;
}

.final-cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.final-cta-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 184, 16, 0.2) 0%, rgba(239, 184, 16, 0.1) 100%);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 50px;
}

.final-cta-buttons .btn-secondary::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, transparent 40%, rgba(239, 184, 16, 0.5) 50%, transparent 60%);
    background-size: 300% 300%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.final-cta-buttons .btn-secondary:hover {
    border-color: rgba(239, 184, 16, 0.5);
    color: #EFB810;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.final-cta-buttons .btn-secondary:hover::before {
    width: 100%;
}

.final-cta-buttons .btn-secondary:hover::after {
    opacity: 1;
    animation: borderAnimateBtn 2s linear infinite;
}

@keyframes borderAnimateBtn {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .intro-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .intro-left {
        flex: none;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-featured {
        flex-direction: column;
    }
    
    .pillar-featured-image {
        flex: none;
        height: 300px;
    }
    
    .why-rob-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .why-rob-left {
        flex: none;
    }
    
    .who-for-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-image::before,
    .hero-image::after {
        width: 300px;
        height: 300px;
    }
    
    .hero-image img {
        max-width: 350px;
    }
    
    .who-for-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}/* End custom CSS */