.aboutHeroSection {
    padding: clamp(4rem, 8vw, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.aboutEyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #18CAD2;
    font-weight: 600;
}

.aboutHeroTitle {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.aboutHeroText {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.aboutHeroSubText {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    max-width: 520px;
}

.aboutHeroActions {
    margin-top: 2rem;
}

.primaryBtn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
    background: linear-gradient(90deg, #00ffe7, #1e90ff);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primaryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(30, 144, 255, 0.3);
}

.aboutHeroVisual {
    position: relative;
}

.aboutHeroVisual::before {
    content: "";
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, #AA54FF33, transparent 70%);
    z-index: -1;
}


.aboutPhilosophySection {
    padding: clamp(0rem, 8vw, 7rem) 0;
    background: #ffffff;
}

.philosophyTimeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid rgba(0, 0, 0, 0.08);
}

.timelineItem {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.timelineItem.active,
.timelineItem:hover {
    opacity: 1;
}

.timelineDot {
    position: absolute;
    left: -2.4rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(90deg, #00FFE7, #18CAD2);
    box-shadow: 0 0 0 6px rgba(0, 255, 231, 0.15);
}

.timelineItem h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.timelineItem p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.philosophyContent h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.leadText {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #222;
}

.subText {
    color: #555;
    max-width: 520px;
}


.workFlowExperience {
    height: 300vh; /* Needed for scroll experience */
    background: #ffffff;
}

.workflowPin {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.workflowTrack {
    display: flex;
    gap: clamp(3rem, 8vw, 8rem);
    padding-left: 10vw;
}

.workflowStep {
    min-width: 60vw;
    max-width: 600px;
}

.stepIndex {
    display: block;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #00FFE7, #1E90FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.workflowStep h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 0.5rem;
}

.workflowStep p {
    font-size: 1rem;
    max-width: 420px;
    color: #555;
}


.thinkingSection {
    padding: clamp(0rem, 8vw, 4rem) 1rem;
    background: #ffffff;
}

.thinkingHeader {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.thinkingHeader h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.thinkingHeader p {
    color: #666;
    margin-top: 0.5rem;
}

.thinkingGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.thinkingCard {
    padding: 2rem;
    border-radius: 1.2rem;
    background: linear-gradient(135deg, #00FFE7, #1E90FF);
    color: #000;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform-style: preserve-3d;
}

.thinkingCard:nth-child(2) {
    background: #FF46EB;
}

.thinkingCard:nth-child(3) {
    background: #FC8176;
}

.thinkingCard:nth-child(4) {
    background: #AA54FF;
}

.thinkingCard h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.thinkingCard p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.thinkingIcon {
    width: clamp(3rem, 5vw, 3.8rem);
    height: clamp(3rem, 5vw, 3.8rem);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 1rem;
    margin-bottom: 1rem;

    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.thinkingIcon svg {
    width: 1.8rem;
    height: 1.8rem;
    stroke-width: 2.2;
    color: #000;
}

/* Card hover enhancement */
.thinkingCard:hover .thinkingIcon {
    transform: translateY(-4px) scale(1.05);
    transition: all 0.3s ease;
}
