/* ==========================================================================
   OUR STORY PAGE - FLEX-ONLY STYLES & FULL RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Base Font & Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'League Spartan', 'Avenir Next Cyr', sans-serif;
    color: #0F172A;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Global Container reset for Our Story page elements */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Shared Section Tag Badge */
.pm__ourstory--tag,
.pm__beginning--tag,
.pm__journey--tag,
.pm__mission--tag,
.pm__values--tag,
.pm__people--tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.pm__ourstory--tag-line,
.pm__beginning--tag-line,
.pm__journey--tag-line,
.pm__mission--tag-line,
.pm__values--tag-line,
.pm__people--tag-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #0066FF;
    border-radius: 2px;
}

.pm__mission--tag-line {
    background-color: #60A5FA;
}

.pm__ourstory--tag-text,
.pm__beginning--tag-text,
.pm__journey--tag-text,
.pm__values--tag-text,
.pm__people--tag-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #0066FF;
    text-transform: uppercase;
}

.pm__mission--tag-text {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #60A5FA;
    text-transform: uppercase;
}


/* ==========================================================================
   1. HERO SECTION - OUR STORY
   ========================================================================== */

.pm__ourstory--section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #F6FAFE 0%, #FFFFFF 100%);
    overflow: hidden;
}

.pm__ourstory--wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

/* Left Content Column */
.pm__ourstory--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 50%;
    min-width: 0;
    max-width: 580px;
}

.pm__ourstory--title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.pm__ourstory--title-highlight {
    color: #0066FF;
    display: inline-block;
}

.pm__ourstory--description {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #5C647A;
    margin: 0 0 32px 0;
    max-width: 520px;
}

/* Action Buttons */
.pm__ourstory--actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pm__ourstory--btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: #0066FF;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm__ourstory--btn-primary:hover {
    background: #0052CC;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 102, 255, 0.45);
}

.pm__ourstory--play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #FFFFFF;
    transition: transform 0.3s ease;
}

.pm__ourstory--btn-primary:hover .pm__ourstory--play-icon {
    transform: scale(1.1);
}

.pm__ourstory--arrow-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.pm__ourstory--btn-primary:hover .pm__ourstory--arrow-icon {
    transform: translateX(4px);
}

.pm__ourstory--btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.pm__ourstory--btn-secondary:hover {
    color: #0066FF;
}

.pm__ourstory--down-arrow {
    display: flex;
    align-items: center;
    color: #0066FF;
    transition: transform 0.3s ease;
}

.pm__ourstory--btn-secondary:hover .pm__ourstory--down-arrow {
    transform: translateY(4px);
}

/* Feature Items Row */
.pm__ourstory--features {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    padding-top: 10px;
}

.pm__ourstory--feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex: 1 1 30%;
    min-width: 0;
}

.pm__ourstory--feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #EBF3FF;
    color: #0066FF;
}

.pm__ourstory--feature-text {
    display: flex;
    flex-direction: column;
}

.pm__ourstory--feature-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 4px 0;
}

.pm__ourstory--feature-text p {
    font-size: 0.825rem;
    line-height: 1.4;
    color: #64748B;
    margin: 0;
}

/* Right Visual Column */
.pm__ourstory--visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1 1 48%;
    min-width: 0;
    max-width: 520px;
    width: 100%;
}

.pm__ourstory--blob-1 {
    position: absolute;
    top: -30px;
    right: -20px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(210, 230, 255, 0.8) 0%, rgba(235, 244, 255, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.pm__ourstory--blob-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(220, 235, 255, 0.7) 0%, rgba(240, 247, 255, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(15px);
    z-index: 1;
}

.pm__ourstory--image-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1.1 / 1;
    height: auto;
    border-radius: 46% 54% 48% 52% / 52% 48% 52% 48%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 70, 180, 0.12);
    z-index: 2;
    transition: transform 0.5s ease;
}

.pm__ourstory--image-frame:hover {
    transform: scale(1.015);
}

.pm__ourstory--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pm__ourstory--badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 50, 120, 0.14);
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

.pm__ourstory--badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #EFF6FF;
    color: #0066FF;
    border-radius: 12px;
    flex-shrink: 0;
}

.pm__ourstory--badge-content {
    display: flex;
    flex-direction: column;
}

.pm__ourstory--badge-content span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.pm__ourstory--badge-content strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

/* Video Lightbox Modal */
.pm__ourstory--modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pm__ourstory--modal.active {
    opacity: 1;
    visibility: visible;
}

.pm__ourstory--modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(6px);
}

.pm__ourstory--modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pm__ourstory--modal.active .pm__ourstory--modal-content {
    transform: scale(1);
}

.pm__ourstory--modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #0F172A;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.2s ease, background 0.2s ease;
}

.pm__ourstory--modal-close:hover {
    transform: scale(1.1);
    background: #0066FF;
    color: #FFFFFF;
}

.pm__ourstory--video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.pm__ourstory--video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* ==========================================================================
   2. OUR BEGINNING SECTION
   ========================================================================== */

.pm__beginning--section {
    position: relative;
    padding: 80px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.pm__beginning--wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.pm__beginning--visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 1 1 48%;
    min-width: 0;
    max-width: 520px;
    width: 100%;
}

.pm__beginning--blob-bg {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(220, 235, 255, 0.7) 0%, rgba(240, 247, 255, 0.2) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 1;
}

.pm__beginning--image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1.25 / 1;
    height: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 50, 150, 0.08);
    z-index: 2;
    transition: transform 0.4s ease;
}

.pm__beginning--image-frame:hover {
    transform: translateY(-4px);
}

.pm__beginning--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pm__beginning--badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(0, 50, 120, 0.12);
    animation: floatBadgeBeginning 4s ease-in-out infinite alternate;
}

.pm__beginning--badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0066FF;
    color: #FFFFFF;
    border-radius: 12px;
    flex-shrink: 0;
}

.pm__beginning--badge-content {
    display: flex;
    flex-direction: column;
}

.pm__beginning--badge-content span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.pm__beginning--badge-content strong {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.pm__beginning--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 50%;
    min-width: 0;
    max-width: 560px;
}

.pm__beginning--title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.18;
    color: #0F172A;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.pm__beginning--description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5C647A;
    margin: 0 0 18px 0;
    max-width: 520px;
}

.pm__beginning--link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0066FF;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.pm__beginning--link:hover {
    color: #0044CC;
}

.pm__beginning--link-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.pm__beginning--link:hover .pm__beginning--link-arrow {
    transform: translateX(6px);
}


/* ==========================================================================
   3. OUR JOURNEY TIMELINE SECTION
   ========================================================================== */

.pm__journey--section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
    overflow: hidden;
}

.pm__journey--header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
}

.pm__journey--title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.pm__journey--subtitle {
    font-size: 1.05rem;
    color: #5C647A;
    margin: 0;
    max-width: 550px;
}

.pm__journey--timeline-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.pm__journey--line-track {
    position: absolute;
    top: 118px;
    left: 8%;
    width: 84%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0.4) 50%, rgba(0, 102, 255, 0.15) 100%);
    z-index: 1;
}

.pm__journey--step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1 1 20%;
    max-width: 210px;
    padding: 0 8px;
    transition: transform 0.3s ease;
}

.pm__journey--step:hover {
    transform: translateY(-4px);
}

.pm__journey--icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #EBF3FF;
    color: #0066FF;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.08);
    border: 4px solid #FFFFFF;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pm__journey--step:hover .pm__journey--icon-badge {
    background: #0066FF;
    color: #FFFFFF;
    transform: scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 102, 255, 0.35);
}

.pm__journey--dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0066FF;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.25);
    margin-bottom: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pm__journey--step:hover .pm__journey--dot {
    transform: scale(1.3);
    background: #0052CC;
}

.pm__journey--info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pm__journey--year {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0066FF;
    margin-bottom: 6px;
}

.pm__journey--step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 6px 0;
}

.pm__journey--step-desc {
    font-size: 0.85rem;
    line-height: 1.45;
    color: #64748B;
    margin: 0;
}


/* ==========================================================================
   4. OUR MISSION SECTION
   ========================================================================== */

.pm__mission--section {
    position: relative;
    padding: 110px 0;
    min-height: 440px;
    overflow: hidden;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.pm__mission--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pm__mission--bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pm__mission--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #071325 0%, rgba(7, 19, 37, 0.94) 45%, rgba(7, 19, 37, 0.55) 75%, rgba(7, 19, 37, 0.15) 100%);
    z-index: 2;
}

.pm__mission--section .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.pm__mission--wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.pm__mission--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 60%;
    min-width: 0;
    max-width: 580px;
}

.pm__mission--title {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.12;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.pm__mission--description {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 32px 0;
    max-width: 530px;
}

.pm__mission--btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: #FFFFFF;
    color: #0F172A;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pm__mission--btn:hover {
    background: #FFFFFF;
    color: #0066FF;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.pm__mission--arrow {
    display: flex;
    align-items: center;
    color: #0F172A;
    transition: transform 0.3s ease, color 0.3s ease;
}

.pm__mission--btn:hover .pm__mission--arrow {
    transform: translateX(5px);
    color: #0066FF;
}

.pm__mission--quote-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    flex: 1 1 40%;
    min-width: 0;
    position: relative;
    padding-right: 20px;
}

.pm__mission--handwritten {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transform: rotate(-3deg);
    transition: transform 0.4s ease;
}

.pm__mission--handwritten:hover {
    transform: rotate(0deg) scale(1.03);
}

.pm__mission--doodle-rays {
    margin-bottom: -4px;
    opacity: 0.9;
}

.pm__mission--quote-text {
    font-family: 'Caveat', 'Kalam', cursive, sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 4px 0;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.pm__mission--doodle-underline {
    margin-top: 4px;
    opacity: 0.9;
}


/* ==========================================================================
   5. OUR VALUES SECTION
   ========================================================================== */

.pm__values--section {
    position: relative;
    padding: 80px 0;
    background: #F8FAFC;
}

.pm__values--header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 45px;
}

.pm__values--title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 12px 0;
    letter-spacing: -0.5px;
}

.pm__values--subtitle {
    font-size: 1.05rem;
    color: #5C647A;
    margin: 0;
    max-width: 560px;
}

.pm__values--cards-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.pm__values--card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #FFFFFF;
    padding: 36px 20px;
    border-radius: 20px;
    flex: 1 1 23%;
    min-width: 0;
    box-shadow: 0 10px 30px rgba(0, 50, 150, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.35s ease;
}

.pm__values--card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 50, 150, 0.1);
    border-color: rgba(0, 102, 255, 0.2);
}

.pm__values--icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.badge-blue { background: #EBF3FF; color: #0066FF; }
.badge-orange { background: #FFF4E5; color: #FF9800; }
.badge-green { background: #E6F8EF; color: #10B981; }
.badge-purple { background: #F3E8FF; color: #A855F7; }

.pm__values--card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0F172A;
    margin: 0 0 10px 0;
}

.pm__values--card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
}


/* ==========================================================================
   6. OUR PEOPLE SECTION - PIXEL PERFECT DESIGN
   ========================================================================== */

.pm__people--section {
    position: relative;
    padding: 90px 0 110px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.pm__people--wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.pm__people--visual {
    display: flex;
    position: relative;
    flex: 1 1 50%;
    min-width: 0;
    max-width: 540px;
    width: 100%;
    padding-bottom: 30px;
}

.pm__people--main-frame {
    position: relative;
    width: 82%;
    aspect-ratio: 1.25 / 1;
    height: auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 50, 150, 0.08);
    z-index: 1;
}

.pm__people--main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm__people--badge {
    position: absolute;
    bottom: 45px;
    left: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 50, 120, 0.12);
}

.pm__people--badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #0066FF;
    color: #FFFFFF;
    border-radius: 12px;
    flex-shrink: 0;
}

.pm__people--badge-text {
    display: flex;
    flex-direction: column;
}

.pm__people--badge-text strong {
    font-size: 0.875rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
}

.pm__people--badge-text span {
    font-size: 0.825rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1.2;
}

.pm__people--inset-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 48%;
    aspect-ratio: 1.3 / 1;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
    border: 5px solid #FFFFFF;
    box-shadow: 0 20px 45px rgba(0, 50, 150, 0.15);
    z-index: 2;
    transition: transform 0.4s ease;
}

.pm__people--inset-frame:hover {
    transform: scale(1.04);
}

.pm__people--inset-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm__people--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 46%;
    min-width: 0;
    max-width: 520px;
    position: relative;
}

.pm__people--doodle-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: rotate(3deg);
    margin-bottom: 8px;
}

/* On Desktop (> 767px), position doodle quote top-right of content column */
@media (min-width: 768px) {
    .pm__people--doodle-quote {
        position: absolute;
        top: -55px;
        right: 0;
        margin-bottom: 0;
    }
}

.doodle-text {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #0066FF;
    line-height: 1.2;
    margin: 2px 0;
}

.pm__people--title {
    font-size: 2.85rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
}

.pm__people--desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #5C647A;
    margin: 0 0 16px 0;
}

.pm__people--link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0066FF;
    text-decoration: none;
    margin-top: 8px;
    transition: color 0.3s ease;
}

.pm__people--link:hover {
    color: #0044CC;
}

.pm__people--arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.pm__people--link:hover .pm__people--arrow {
    transform: translateX(6px);
}


/* ==========================================================================
   7. CTA BANNER SECTION
   ========================================================================== */

.pm__cta--section {
    position: relative;
    padding: 50px 0 90px 0;
    background: #FFFFFF;
}

.pm__cta--banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0056FE 0%, #0036A3 100%);
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0, 70, 200, 0.25);
}

.pm__cta--content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 45px;
    flex: 1 1 55%;
    min-width: 0;
    max-width: 600px;
    z-index: 2;
}

.pm__cta--title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px;
}

.pm__cta--desc {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 28px 0;
    max-width: 500px;
}

.pm__cta--btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #FFFFFF;
    color: #0056FE;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.pm__cta--btn:hover {
    background: #FFFFFF;
    color: #0036A3;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.pm__cta--btn-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.pm__cta--btn:hover .pm__cta--btn-arrow {
    transform: translateX(5px);
}

.pm__cta--visual {
    display: flex;
    position: relative;
    flex: 1 1 45%;
    min-width: 0;
    height: stretch;
    min-height: 340px;
        align-self: stretch;
}

.pm__cta--img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.pm__cta--doodle {
    position: absolute;
    top: 25px;
    left: 20px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-3deg);
}

.pm__cta--doodle-text {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin: 2px 0;
}


/* ==========================================================================
   8. COMPREHENSIVE RESPONSIVE BREAKPOINTS (MEDIA QUERIES)
   ========================================================================== */

/* Laptop / Small Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .pm__ourstory--title,
    .pm__mission--title {
        font-size: 2.75rem;
    }

    .pm__beginning--title,
    .pm__journey--title,
    .pm__values--title,
    .pm__people--title,
    .pm__cta--title {
        font-size: 2.35rem;
    }

    .pm__journey--line-track {
        top: 114px;
        left: 6%;
        width: 88%;
    }

    .pm__people--main-frame {
        width: 84%;
    }

    .pm__people--inset-frame {
        width: 50%;
    }
}

/* Tablet & Mobile Breakpoint Adjustments (< 768px) */
@media (max-width: 767px) {
    .pm__ourstory--section,
    .pm__beginning--section,
    .pm__journey--section,
    .pm__mission--section,
    .pm__values--section,
    .pm__people--section {
        padding: 55px 0;
    }

    /* Stack 2-column flex sections vertically */
    .pm__ourstory--wrapper,
    .pm__mission--wrapper,
    .pm__people--wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pm__beginning--wrapper {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
    }

    .pm__ourstory--content,
    .pm__beginning--content,
    .pm__mission--content,
    .pm__people--content {
        align-items: center;
        max-width: 100%;
        flex: 1 1 100%;
    }

    .pm__ourstory--tag,
    .pm__beginning--tag,
    .pm__journey--tag,
    .pm__mission--tag,
    .pm__values--tag,
    .pm__people--tag {
        justify-content: center;
    }

    .pm__ourstory--description,
    .pm__beginning--description,
    .pm__mission--description,
    .pm__values--subtitle,
    .pm__journey--subtitle,
    .pm__people--desc,
    .pm__cta--desc {
        max-width: 680px;
    }

    .pm__ourstory--actions {
        justify-content: center;
    }

    .pm__ourstory--features {
        justify-content: center;
        gap: 16px;
    }

    .pm__ourstory--feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pm__ourstory--visual,
    .pm__beginning--visual,
    .pm__people--visual {
        max-width: 100%;
        width: 100%;
        flex: 1 1 100%;
    }

    .pm__ourstory--image-frame {
        max-width: 440px;
    }

    .pm__beginning--image-frame {
        max-width: 440px;
    }

    /* Mission section vertical layout */
    .pm__mission--overlay {
        background: linear-gradient(180deg, #071325 0%, rgba(7, 19, 37, 0.92) 65%, rgba(7, 19, 37, 0.8) 100%);
    }

    .pm__mission--quote-box {
        align-items: center;
        margin-top: 30px;
        padding-right: 0;
        flex: 1 1 100%;
    }

    /* Values Grid 2x2 */
    .pm__values--cards-row {
        flex-wrap: wrap;
        gap: 16px;
    }

    .pm__values--card {
        flex: 1 1 45%;
    }

    /* Journey Timeline Vertical Layout */
    .pm__journey--header {
        margin-bottom: 35px;
    }

    .pm__journey--timeline-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding-left: 20px;
    }

    .pm__journey--line-track {
        top: 0;
        left: 43px;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(0, 102, 255, 0.2) 0%, rgba(0, 102, 255, 0.6) 50%, rgba(0, 102, 255, 0.2) 100%);
    }

    .pm__journey--step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        max-width: 100%;
        width: 100%;
        gap: 18px;
        padding: 0;
    }

    .pm__journey--icon-badge {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
    }

    .pm__journey--icon-badge svg {
        width: 18px;
        height: 18px;
    }

    .pm__journey--dot {
        display: none;
    }

    .pm__journey--info {
        align-items: flex-start;
    }

    /* People Inset Frame Adjustments */
    .pm__people--main-frame {
        width: 100%;
    }

    .pm__people--inset-frame {
        bottom: -20px;
        right: 10px;
        width: 48%;
    }

    /* CTA Banner Vertical */
    .pm__cta--banner {
        flex-direction: column;
    }

    .pm__cta--content {
        align-items: center;
        text-align: center;
        padding: 40px 24px;
        max-width: 100%;
    }

    .pm__cta--visual {
        min-height: 240px;
        width: 100%;
    }
}

/* Small Mobile (< 576px) */
@media (max-width: 575px) {
    .pm__ourstory--title,
    .pm__mission--title {
        font-size: 2.1rem;
    }

    .pm__beginning--title,
    .pm__journey--title,
    .pm__values--title,
    .pm__people--title,
    .pm__cta--title {
        font-size: 1.85rem;
    }

    .pm__ourstory--description,
    .pm__beginning--description,
    .pm__mission--description,
    .pm__values--subtitle,
    .pm__people--desc,
    .pm__cta--desc {
        font-size: 0.95rem;
    }

    .pm__ourstory--actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

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

    .pm__ourstory--btn-secondary {
        justify-content: center;
    }

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

    .pm__ourstory--feature-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        width: 100%;
        max-width: 320px;
    }

    .pm__ourstory--image-frame {
        border-radius: 30px;
    }

    .pm__beginning--image-frame {
        border-radius: 20px;
    }

    .pm__ourstory--badge {
        bottom: 10px;
        right: 50%;
        transform: translateX(50%);
        animation: none;
        padding: 10px 16px;
        white-space: nowrap;
    }

    .pm__beginning--badge {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        animation: none;
        padding: 10px 16px;
        white-space: nowrap;
    }

    .pm__mission--quote-text {
        font-size: 1.75rem;
    }

    .pm__values--card {
        flex: 1 1 100%;
        padding: 28px 18px;
    }

    .pm__people--badge {
        bottom: 25px;
        left: 10px;
        padding: 8px 14px;
    }

    .pm__people--inset-frame {
        width: 55%;
        bottom: -15px;
        right: 5px;
    }

    .pm__cta--content {
        padding: 36px 18px;
    }

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

    .pm__cta--doodle-text {
        font-size: 1.3rem;
    }
}
