/* ============================================================
   Oran Investments – Design System (from PDF profile)
   Colors: Yellow #FDCC08, Black #0E0E0E, White #FFFFFF
   Fonts : Fredoka (headings), Montserrat (body)
============================================================ */

:root {
    --yellow: #FDCC08;
    --black: #0E0E0E;
    --white: #FFFFFF;
    --light: #F5F5F5;
    --gray: #777;
    --font-h: 'Fredoka', sans-serif;
    --font-b: 'Montserrat', sans-serif;
    --radius: 28px;
    --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ── RESET ──────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden
}

body {
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.65;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px
}

.section-white {
    padding: 100px 0;
    background: var(--white)
}

.section-light {
    padding: 100px 0;
    background: var(--light)
}

.yellow-bg {
    background: var(--yellow) !important;
    color: var(--black) !important
}

.black-bg {
    background: var(--black) !important;
    color: var(--white) !important
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
.anim-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.anim-fade {
    opacity: 0;
    transition: opacity 1s var(--ease)
}

.delay-2 {
    transition-delay: .25s
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important
}

/* ════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 1000;
    transition: background .4s, box-shadow .4s
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06)
}

.nav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%
}

.logo {
    display: flex;
    align-items: center;
    gap: 2px
}

.logo-text {
    font-family: var(--font-h);
    font-size: 32px;
    font-weight: 700;
    -webkit-text-stroke: 2px var(--black);
    color: var(--white);
    letter-spacing: 2px
}

.logo-star {
    font-size: 24px;
    color: var(--yellow);
    -webkit-text-stroke: 2px var(--black);
    transform: rotate(15deg);
    display: inline-block
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center
}

.nav-links a {
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 6px 0;
    transition: color .3s
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: width .3s var(--ease)
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--yellow);
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 700 !important
}

.nav-cta::after {
    display: none !important
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1001
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--black);
    transition: .3s
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.hamburger.active span:nth-child(2) {
    opacity: 0
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

/* ════════════════════════════════════════════════════════════
   HERO  (Page 1)
════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white)
}

.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 1
}

.hero .shape {
    position: absolute
}

.hero .shape-1 {
    top: -120px;
    left: -120px;
    width: 500px;
    height: 300px;
    background: var(--yellow);
    transform: rotate(-35deg)
}

.hero .shape-2 {
    top: 15%;
    right: -200px;
    width: 600px;
    height: 500px;
    background: var(--black);
    transform: rotate(45deg)
}

.hero .shape-3 {
    bottom: -200px;
    right: 15%;
    width: 700px;
    height: 350px;
    background: var(--yellow);
    transform: rotate(-45deg)
}

.hero .shape-4 {
    top: -60px;
    right: 30%;
    width: 200px;
    height: 200px;
    background: var(--yellow);
    transform: rotate(25deg)
}

.hero .shape-5 {
    bottom: 10%;
    left: -60px;
    width: 250px;
    height: 250px;
    background: var(--black);
    transform: rotate(20deg)
}

.hero .shape-6 {
    top: 40%;
    left: 20%;
    width: 120px;
    height: 120px;
    background: var(--yellow);
    transform: rotate(-20deg);
    opacity: .5
}

.hero-inner {
    position: relative;
    z-index: 10;
    text-align: center
}

.hero-logo-big {
    display: inline-flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 30px
}

.outline-logo {
    font-family: var(--font-h);
    font-size: clamp(80px, 14vw, 180px);
    font-weight: 700;
    -webkit-text-stroke: 4px var(--black);
    color: var(--white);
    letter-spacing: 6px;
    line-height: 1
}

.big-star {
    font-size: clamp(50px, 8vw, 90px);
    color: var(--yellow);
    -webkit-text-stroke: 4px var(--black);
    position: relative;
    top: -10px;
    transform: rotate(15deg);
    display: inline-block
}

.hero-tagline {
    font-family: var(--font-b);
    font-weight: 800;
    font-size: clamp(14px, 2.5vw, 24px);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    background: rgba(255, 255, 255, .88);
    padding: 18px 30px;
    border-radius: 12px;
    max-width: 750px;
    margin: 0 auto;
    border-right: 6px solid var(--black)
}

/* ════════════════════════════════════════════════════════════
   YELLOW CARD (Pages 2, 3, 4-top)
════════════════════════════════════════════════════════════ */
.yellow-card {
    background: var(--yellow);
    border-radius: var(--radius);
    padding: 70px 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .06)
}

.yellow-card-title {
    font-family: var(--font-h);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px
}

.yellow-card-title.giant {
    font-size: clamp(60px, 10vw, 100px);
    line-height: .95
}

.yellow-card-title.giant-center {
    font-size: clamp(50px, 8vw, 80px);
    text-align: center
}

.yellow-card-body p,
.yellow-card-center-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 1.7
}

.yellow-card-body p:last-child,
.yellow-card-center-text:last-child {
    margin-bottom: 0
}

.yellow-card-center-text {
    text-align: center;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto
}

/* ════════════════════════════════════════════════════════════
   VISION / MISSION / VALUES  (Page 4)
════════════════════════════════════════════════════════════ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0
}

.vm-block {}

.vm-title {
    font-family: var(--font-h);
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block
}

.vm-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--black);
    border-radius: 4px
}

.vm-block p {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    line-height: 1.65
}

.core-values-block {
    text-align: center;
    margin-top: 50px
}

.cv-title {
    font-family: var(--font-h);
    font-size: 42px;
    margin-bottom: 30px;
    display: inline-block;
    position: relative
}

.cv-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--black);
    border-radius: 4px
}

.pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 30px
}

.pill {
    background: var(--yellow);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-h);
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(253, 204, 8, .3);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
    cursor: default
}

.pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(253, 204, 8, .5)
}

/* ════════════════════════════════════════════════════════════
   OUR APPROACH  (Page 5 – Winding Road)
════════════════════════════════════════════════════════════ */
.big-section-title {
    font-family: var(--font-h);
    font-size: clamp(50px, 8vw, 80px);
    font-weight: 700;
    margin-bottom: 60px
}

.outline-inline {
    font-family: var(--font-h);
    -webkit-text-stroke: 3px var(--black);
    color: var(--white);
    letter-spacing: 3px;
}

.inline-star {
    font-size: 0.5em;
    color: var(--yellow);
    -webkit-text-stroke: 2px var(--black);
    transform: rotate(15deg);
    display: inline-block;
    position: relative;
    top: -0.3em;
}

.approach-section {
    padding-bottom: 60px;
    overflow: hidden;
}

.road-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 1200px;
}

.road-svg {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
}

.road-steps {
    position: relative;
    z-index: 2;
    padding-top: 20px;
}

.road-step {
    max-width: 420px;
    margin-bottom: 0;
}

.road-step h3 {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 14px;
}

.road-step p {
    font-size: 16px;
    font-weight: 500;
    color: #444;
    line-height: 1.7;
}

/* Position each step to align with the road curves */
.step-1 {
    padding-top: 80px;
    margin-bottom: 80px;
}

.step-2 {
    margin-bottom: 120px;
}

.step-3 {
    margin-bottom: 100px;
}

.step-4 {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Connector lines from text to road circles */
.road-step h3::after {
    content: '';
    display: inline-block;
    width: 80px;
    height: 2px;
    background: var(--black);
    vertical-align: middle;
    margin-left: 16px;
}

.step-4 h3::after {
    display: none;
}

/* ════════════════════════════════════════════════════════════
   CAPABILITIES  (Pages 6-9)
════════════════════════════════════════════════════════════ */
.cap-group {
    margin-bottom: 60px
}

.cap-group-title {
    font-family: var(--font-h);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px
}

.cap-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px
}

.cap-card {
    border-radius: var(--radius);
    padding: 36px 32px
}

.cap-card.yellow {
    background: var(--yellow)
}

.cap-card.wide {
    grid-column: 1 / -1
}

.cap-card h4 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase
}

.cap-card ul {
    padding-left: 0
}

.cap-card li {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.cap-card li::before {
    content: '•';
    font-size: 22px;
    line-height: 1;
    color: var(--black);
    flex-shrink: 0
}

/* ════════════════════════════════════════════════════════════
   PRODUCT PORTFOLIO  (Pages 10-11)
════════════════════════════════════════════════════════════ */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease);
    display: flex;
    flex-direction: column
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .14)
}

.product-top {
    padding: 40px;
    text-align: center
}

.product-logo {
    max-height: 180px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.product-top h3 {
    font-family: var(--font-h);
    font-size: 34px;
    font-weight: 700
}

.product-sub {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
    font-weight: 600
}

.product-bottom {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.product-bottom h4 {
    font-family: var(--font-h);
    font-size: 18px;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 16px
}

.product-bottom p {
    font-size: 15px;
    font-weight: 500;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.65
}

.product-bottom .bold {
    font-weight: 800;
    color: var(--black);
    font-size: 16px
}

.product-cta {
    font-family: var(--font-h);
    font-size: 17px;
    color: var(--black) !important;
    font-weight: 700;
    margin-top: auto;
    padding-top: 14px
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--black);
    margin-top: 14px;
    font-size: 14px;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 2px;
    transition: color .3s
}

.product-link:hover {
    color: var(--yellow)
}

/* ════════════════════════════════════════════════════════════
   FOOTER / CONTACT  (Page 12)
════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding: 120px 0 30px
}

.footer-shapes {
    position: absolute;
    inset: 0;
    z-index: 0
}

.footer .shape {
    position: absolute
}

.footer .shape-1 {
    top: -100px;
    right: -60px;
    width: 450px;
    height: 300px;
    background: var(--yellow);
    transform: rotate(35deg)
}

.footer .shape-2 {
    top: -40px;
    right: 120px;
    width: 200px;
    height: 200px;
    background: var(--black);
    transform: rotate(35deg)
}

.footer .shape-3 {
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 200px;
    background: var(--yellow);
    transform: rotate(-25deg)
}

.footer .shape-4 {
    bottom: -100px;
    right: 10%;
    width: 300px;
    height: 250px;
    background: var(--yellow);
    transform: rotate(40deg)
}

.footer-inner {
    position: relative;
    z-index: 2
}

.footer-brand {
    margin-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px
}

.footer-logo-text {
    font-family: var(--font-h);
    font-size: clamp(60px, 10vw, 100px);
    -webkit-text-stroke: 3px var(--black);
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1
}

.footer-star {
    font-size: clamp(40px, 6vw, 60px);
    color: var(--yellow);
    -webkit-text-stroke: 3px var(--black);
    transform: rotate(15deg);
    display: inline-block
}

.footer-company {
    font-family: var(--font-h);
    font-size: clamp(40px, 8vw, 80px);
    -webkit-text-stroke: 3px var(--black);
    color: var(--white);
    letter-spacing: 3px;
    line-height: 1;
    width: 100%
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
    color: var(--black);
    transition: color .3s
}

.footer-item:hover {
    color: var(--yellow)
}

.footer-item i {
    width: 44px;
    height: 44px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.footer-bottom {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding-top: 20px
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray)
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media(max-width:1024px) {

    .vm-grid,
    .product-grid {
        grid-template-columns: 1fr
    }

    .container {
        padding: 0 24px
    }

    .big-section-title {
        font-size: clamp(40px, 7vw, 60px)
    }
}

@media(max-width:768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        transition: left .4s var(--ease)
    }

    .nav-links.open {
        left: 0
    }

    .hamburger {
        display: flex
    }

    .yellow-card {
        padding: 40px 28px
    }

    .yellow-card-title {
        font-size: 32px
    }

    .cap-cards {
        grid-template-columns: 1fr
    }

    .roadmap {
        padding-left: 40px
    }

    .roadmap::before {
        left: 14px
    }

    .step-content {
        padding: 24px
    }

    .product-grid {
        grid-template-columns: 1fr
    }

    .hero-shapes .shape-2 {
        width: 400px;
        height: 350px
    }

    .hero-shapes .shape-3 {
        width: 500px;
        height: 250px
    }
}