:root {
    --bg-dark: #0e1420;
    --primary-orange: #f97316;
    --text-white: #ffffff;
    --text-gray: #9ca3af;
    --glass-border: rgba(255, 255, 255, .1);
    --glass-bg: rgba(255, 255, 255, .05);
    --container-width: 1200px;
    --header-height: 120px;
    --glass-surface: rgba(255, 255, 255, .03);
    --glass-border: 1px solid rgba(255, 255, 255, .08);
    --glass-shine: inset 0 1px 0 rgba(255, 255, 255, .15);
    --neu-shadow: 12px 12px 24px rgba(0, 0, 0, .4), -4px -4px 12px rgba(255, 255, 255, .02);
    --neu-shadow-hover: 16px 16px 32px rgba(0, 0, 0, .5), -4px -4px 16px rgba(255, 255, 255, .02);
    --font-main: "Lexend", sans-serif
}

::-webkit-scrollbar {
    width: 10px
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) var(--bg-dark);
    font-size: 110%
}

@media(max-width:1024px) {
    ::-webkit-scrollbar {
        width: 6px;
        display: block
    }
}

::-webkit-scrollbar-track {
    background: var(--bg-dark)
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 9999px;
    border: 3px solid var(--bg-dark)
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c
}

::selection {
    background-color: var(--primary-orange);
    color: #fff
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html.lenis {
    height: auto
}

.lenis.lenis-smooth {
    scroll-behavior: auto
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain
}

.lenis.lenis-stopped {
    overflow: hidden
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.5
}

@media(max-width:810px) {
    html {
        font-size: 100%
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease
}

ul {
    list-style: none
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    font-size: .95rem;
    font-family: inherit;
    white-space: nowrap;
    gap: 8px
}

.btn-primary {
    background: #ffffff0d;
    border: 1px solid #f97316;
    color: #fff;
    box-shadow: 0 0 25px #f973164d;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff9f43);
    color: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px #f9731699, 0 0 10px #fff3;
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.btn-primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .5s
}

.btn-primary:hover:before {
    left: 100%
}

.btn-outline {
    background: #ffffff0d;
    border: 1px solid #f97316;
    color: #fff;
    box-shadow: 0 0 25px #f973164d;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff9f43);
    color: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px #f9731699, 0 0 10px #fff3;
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.btn-outline:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .5s
}

.btn-outline:hover:before {
    left: 100%
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: padding .3s ease
}

.site-header.scrolled {
    background: transparent;
    border-bottom: none;
    padding: 12px 0;
    pointer-events: none
}

.site-header.scrolled .header-inner {
    pointer-events: auto;
    background: #0e1420d9;
    box-shadow: 0 10px 30px #0003;
    padding: 6px 20px;
    gap: 32px
}

.site-header.scrolled .main-nav ul {
    gap: 24px
}

.site-header.scrolled .main-nav a {
    font-size: .9rem
}

.site-header.scrolled .btn {
    padding: 8px 20px;
    font-size: .9rem
}

.site-header.scrolled .lang-switch {
    padding: 2px;
    gap: 2px
}

.site-header.scrolled .lang-switch a {
    padding: 4px 10px;
    font-size: .8rem
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    border: var(--glass-border);
    padding: 10px 20px;
    border-radius: 9999px;
    background: var(--glass-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--neu-shadow), var(--glass-shine);
    width: fit-content;
    margin: 0 auto;
    transition: all .3s cubic-bezier(.4, 0, .2, 1)
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: height .3s ease
}

.hero-section {
    position: relative;
    min-height: 100vh
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 20;
    opacity: .8;
    transition: opacity .3s ease
}

@media(max-width:1024px) {
    .scroll-indicator {
        bottom: 20px
    }
}

.scroll-indicator:hover {
    opacity: 1
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 15px #f973161a
}

.wheel {
    width: 4px;
    height: 8px;
    background: #f97316;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translate(-50%);
    animation: scroll-wheel 2s infinite;
    box-shadow: 0 0 5px #f97316
}

.scroll-down-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, .5);
    border-bottom: 2px solid rgba(255, 255, 255, .5);
    transform: rotate(45deg);
    animation: scroll-arrow 2s infinite;
    animation-delay: .2s
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1
    }

    to {
        top: 24px;
        opacity: 0
    }
}

@keyframes scroll-arrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px)
    }

    50% {
        opacity: 1
    }

    to {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px)
    }
}

.main-nav {
    margin: 0
}

.main-nav ul {
    display: flex;
    gap: 32px;
    transition: gap .3s ease;
    align-items: center
}

.main-nav li {
    display: flex;
    align-items: center;
    height: 100%
}

.main-nav a {
    font-size: .95rem;
    color: var(--text-gray);
    font-weight: 400;
    transition: all .3s ease;
    white-space: nowrap;
    position: relative
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-white)
}

.main-nav a.active:after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translate(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-orange)
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px
}

.header-actions .btn-primary {
    padding: 8px 20px;
    font-size: .95rem
}

.lang-switch {
    display: flex;
    background: #ffffff0d;
    padding: 4px;
    border-radius: 9999px;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, .1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: all .3s ease
}

.lang-switch a {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: .85rem;
    padding: 6px 14px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 500;
    transition: all .3s ease;
    display: inline-block
}

.lang-switch a:hover {
    color: #fff;
    background: #ffffff0d
}

.lang-switch a.active {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 2px 10px #f973164d
}

html[lang=en] .lang-tr-only,
html[lang=tr] .lang-en-only {
    display: none !important
}

.site-header .has-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center
}

.site-header .dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px
}

.site-header .nav-arrow {
    transition: transform .3s ease
}

.site-header .has-dropdown:hover .nav-arrow,
.site-header .has-dropdown:focus-within .nav-arrow {
    transform: rotate(180deg)
}

.site-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%) translateY(20px);
    width: 600px;
    background: #0e1420fc;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
    box-shadow: 0 20px 50px #00000080, 0 0 0 1px #ffffff0d;
    z-index: 1100;
    pointer-events: none;
    margin-top: 26px
}

.site-header .dropdown-menu:before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: inherit;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1)
}

.site-header .dropdown-menu:after {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px
}

.site-header .has-dropdown:hover .dropdown-menu,
.site-header .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%) translateY(0);
    pointer-events: auto
}

.site-header .dropdown-menu ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0
}

.site-header .dropdown-menu li {
    display: block
}

.site-header .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background .2s ease
}

.site-header .dropdown-menu a:hover {
    background: #ffffff14
}

.site-header .dropdown-menu .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: color .2s ease, transform .2s ease
}

.site-header .dropdown-menu a:hover .icon {
    color: var(--primary-orange);
    transform: scale(1.1)
}

.site-header .dropdown-menu .icon svg {
    stroke: currentColor
}

.site-header .dropdown-menu .text {
    display: flex;
    flex-direction: column
}

.site-header .dropdown-menu .title {
    color: var(--text-white);
    font-weight: 500;
    font-size: .95rem
}

.site-header .dropdown-menu .desc {
    color: var(--text-gray);
    font-size: .75rem;
    margin-top: 2px
}

.arrow {
    margin-left: 4px;
    transition: transform .3s ease
}

.btn-primary:hover .arrow {
    transform: translate(4px)
}

.arrow-left {
    margin-right: 6px;
    transition: transform .3s ease
}

.btn-primary:hover .arrow-left {
    transform: translate(-4px)
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    background: var(--bg-dark)
}

.orb-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .8
}

.hero-content {
    width: 100%;
    margin-top: -80px
}

.hero-content {
    width: 100%
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-white)
}

.hero-title .highlight {
    display: inline;
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, .6), 0 0 24px rgba(255, 255, 255, .3);
    font-weight: 500
}

.hero-text {
    font-size: 1.1rem;
    color: #e2e8f0;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6
}

.hero-cta .btn-outline {
    padding: 12px 24px;
    border-radius: 9999px
}

.services-section {
    padding: 150px 0;
    position: relative;
    z-index: 1
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px
}

.header-left {
    flex: 1
}

.sub-label {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px
}

.sub-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--primary-orange)
}

.section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600
}

.header-right {
    flex: 1;
    max-width: 500px;
    padding-top: 42px
}

.section-desc {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px
}

.service-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    cursor: pointer;
    background: var(--glass-surface);
    box-shadow: var(--neu-shadow);
    transition: all .5s cubic-bezier(.25, .46, .45, .94)
}

.service-card:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: var(--glass-border);
    box-shadow: inset 0 0 20px #ffffff05;
    pointer-events: none;
    z-index: 2;
    transition: all .5s ease
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px #0006, 0 0 30px #f9731633
}

.service-card:hover:after {
    border-color: #f9731680;
    box-shadow: inset 0 0 30px #f9731626
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    clip-path: inset(0 round 20px);
    -webkit-clip-path: inset(0 round 20px);
    isolation: isolate;
    overflow: hidden
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
    transition: transform .7s cubic-bezier(.25, .46, .45, .94), filter .5s ease
}

.service-card:hover .card-bg img {
    transform: scale(1.08);
    filter: brightness(.6)
}

.card-bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #0a0a0af2, #0a0a0a4d);
    border-radius: 20px;
    transition: opacity .5s ease
}

.service-card:hover .card-bg:after {
    background: linear-gradient(to top, #0a0a0af2, #0a0a0a1a)
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    transform: translateY(0)
}

.card-info {
    flex: 1;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1.3;
    transition: transform .5s cubic-bezier(.25, 1, .5, 1)
}

.service-card:hover h3 {
    transform: translateY(-5px);
    color: #fff;
    text-shadow: 0 0 12px rgba(255, 255, 255, .6), 0 0 24px rgba(255, 255, 255, .3)
}

.service-desc {
    color: #cbd5e1;
    font-size: .95rem;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: all .5s cubic-bezier(.25, 1, .5, 1);
    padding-top: 0
}

.service-card:hover .service-desc {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 12px
}

.service-card:hover .card-content {
    transform: translateY(-10px);
    padding-bottom: 40px
}

.card-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff1a;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: all .3s ease;
    flex-shrink: 0
}

.service-card:hover .card-btn {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #fff;
    transform: rotate(-45deg)
}

.services-footer {
    display: flex;
    justify-content: center
}

@media(max-width:1199px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:810px) {
    .services-header {
        flex-direction: column;
        gap: 20px
    }

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

    .header-right {
        max-width: 100%;
        padding-top: 0
    }
}

@media(max-width:810px) {
    .hero-title {
        font-size: 3rem
    }

    .header-inner {
        padding: 12px 20px
    }
}

.approach-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.approach-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px
}

.approach-bg {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    height: 500px;
    width: 100%
}

.approach-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.strategy-card {
    position: absolute;
    bottom: -60px;
    right: -40px;
    background: #0e1420e6;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 24px;
    width: 340px;
    box-shadow: 0 20px 50px #0009;
    z-index: 2
}

.strategy-card .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 #10b98166;
    animation: pulse-green 2s infinite
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 #10b98166
    }

    70% {
        box-shadow: 0 0 0 6px #10b98100
    }

    to {
        box-shadow: 0 0 #10b98100
    }
}

.strategy-card .header-text {
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: .5px
}

.strategy-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.metric-info {
    display: flex;
    justify-content: space-between;
    font-size: .85rem
}

.metric-info .label {
    color: var(--text-white);
    font-weight: 500
}

.metric-info .value {
    color: var(--primary-orange);
    font-weight: 600
}

.progress-track {
    width: 100%;
    height: 6px;
    background: #ffffff1a;
    border-radius: 3px;
    overflow: hidden
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-orange), #ff9f43);
    border-radius: 3px;
    width: 0;
    animation: fill-progress 1.5s cubic-bezier(.22, 1, .36, 1) forwards
}

.w-100 {
    width: 100%
}

.w-85 {
    width: 85%
}

.w-active {
    width: 60%;
    background: linear-gradient(90deg, #10b981, #34d399);
    position: relative;
    overflow: hidden
}

.w-active:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .4), transparent);
    transform: translate(-100%);
    animation: shimmer 2s infinite
}

@keyframes fill-progress {
    0% {
        width: 0
    }
}

@keyframes shimmer {
    to {
        transform: translate(100%)
    }
}

.strategy-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--primary-orange);
    opacity: .5;
    filter: drop-shadow(0 0 5px rgba(249, 115, 22, .3));
    animation: pulse 3s infinite
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: .8
    }

    50% {
        transform: scale(1.1);
        opacity: 1
    }

    to {
        transform: scale(1);
        opacity: .8
    }
}

.data-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: .3
}

.line {
    height: 2px;
    background: #fff3;
    border-radius: 2px
}

.w-70 {
    width: 70%
}

.w-50 {
    width: 50%
}

.w-90 {
    width: 90%
}

.approach-content .section-desc {
    margin-bottom: 32px;
    max-width: 500px
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff
}

.check-icon svg {
    width: 14px;
    height: 14px
}

@media(max-width:1199px) {
    .approach-grid {
        display: flex;
        flex-direction: column-reverse;
        gap: 60px
    }

    .approach-image-wrapper {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto
    }

    .floating-analytics-card {
        right: 0;
        bottom: 20px;
        transform: translate(10px)
    }
}

.cta-section {
    padding: 80px 0;
    width: 100%;
    background: #ffffff08;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.cta-glass-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.cta-title {
    font-family: Lexend, sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3
}

.cta-btn {
    padding: 12px 28px;
    font-size: 1.1rem;
    border-radius: 50px;
    background: transparent;
    border: 1px solid var(--primary-orange);
    color: var(--primary-orange);
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    white-space: nowrap
}

.cta-btn:hover {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 0 15px #f9731666;
    transform: translateY(-2px)
}

@media(max-width:1199px) {
    .cta-glass-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        gap: 32px
    }

    .cta-title {
        font-size: 2rem
    }
}

.about-section {
    position: relative;
    width: 100%;
    height: 800px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 100px;
    padding-bottom: 80px
}

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

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #0e1420e6, #0e142099, #0e142033)
}

.about-content-container {
    position: relative;
    z-index: 2;
    width: 100%
}

.about-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%
}

.about-btn-wrapper {
    flex-shrink: 0
}

.about-title {
    font-family: Lexend, sans-serif;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.25;
    color: #fff;
    max-width: 1200px;
    margin-right: 40px
}

.about-btn {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid #f97316;
    background: #ffffff0d;
    color: #fff;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    text-transform: capitalize;
    box-shadow: 0 0 25px #f973164d;
    position: relative;
    overflow: hidden
}

.about-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff9f43);
    color: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px #f9731699, 0 0 10px #fff3;
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.about-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .5s
}

.about-btn:hover:before {
    left: 100%
}

@media(max-width:1199px) {
    .about-section {
        height: auto;
        padding: 80px 0
    }

    .about-text-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px
    }

    .about-title {
        font-size: 2.25rem
    }
}

.why-us-section {
    padding: 150px 0;
    background-color: var(--bg-dark);
    margin-bottom: 200px
}

.why-us-header {
    text-align: left;
    max-width: 800px;
    margin: 0 0 80px
}

.why-us-header .sub-label {
    display: inline-block;
    color: var(--primary-orange);
    font-size: .9rem;
    letter-spacing: .1em;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
    font-weight: 600
}

.why-us-header .sub-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--primary-orange)
}

.why-us-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 24px
}

.why-us-header .section-desc {
    max-width: 700px;
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.feature-card {
    background: var(--glass-surface);
    border: var(--glass-border);
    box-shadow: var(--neu-shadow), var(--glass-shine);
    padding: 32px;
    border-radius: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), box-shadow .3s cubic-bezier(.4, 0, .2, 1)
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--neu-shadow-hover), var(--glass-shine), 0 0 20px #f973161a
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
    transition: transform .3s ease
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(-5deg)
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: .95rem;
    flex-grow: 1
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 500;
    transition: gap .3s ease
}

.text-link:hover {
    gap: 12px
}

.text-link span {
    font-size: 1.2em
}

@media(max-width:1199px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:810px) {
    .why-us-grid {
        grid-template-columns: 1fr
    }

    .why-us-header .section-title {
        font-size: 2rem
    }

    .why-us-header {
        text-align: left
    }

    .why-us-header .sub-label {
        padding-left: 40px
    }
}

.process-section {
    padding: 150px 0;
    width: 100%;
    background: #ffffff08;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.process-container {
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    gap: 50px;
    align-items: center
}

.process-content {
    max-width: 500px
}

.process-content .section-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #fff
}

.process-content .section-desc {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 1.1rem
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.process-card {
    background: #ffffff08;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    padding: 32px;
    transition: all .3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%
}

.process-card:hover {
    background: #ffffff0f;
    transform: translateY(-5px);
    border-color: var(--primary-orange)
}

.step-number {
    font-family: Lexend, sans-serif;
    font-size: 2.5rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 24px;
    display: block
}

.process-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.4
}

.process-card p {
    font-size: .9rem;
    color: var(--text-gray);
    line-height: 1.6
}

#process-cta {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #f97316;
    background: #ffffff0d;
    color: #fff;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 25px #f973164d;
    position: relative;
    overflow: hidden
}

#process-cta:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff9f43);
    color: #fff;
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px #f9731699, 0 0 10px #fff3;
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

#process-cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .5s
}

#process-cta:hover:before {
    left: 100%
}

.btn-outline-light,
.cta-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid #f97316 !important;
    background: #ffffff0d !important;
    color: #fff !important;
    cursor: pointer;
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 25px #f973164d !important;
    position: relative;
    overflow: hidden
}

.btn-outline-light:hover,
.cta-btn:hover {
    background: linear-gradient(135deg, var(--primary-orange), #ff9f43) !important;
    color: #fff !important;
    border-color: var(--primary-orange) !important;
    box-shadow: 0 0 30px #f9731699, 0 0 10px #fff3 !important;
    transform: translateY(-3px) scale(1.02);
    text-shadow: 0 1px 2px rgba(0, 0, 0, .2)
}

.btn-outline-light:before,
.cta-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transition: .5s
}

.btn-outline-light:hover:before,
.cta-btn:hover:before {
    left: 100%
}

@media(max-width:1199px) {
    .process-container {
        grid-template-columns: 1fr;
        gap: 60px
    }

    .process-content {
        max-width: 1000px;
        text-align: center
    }

    .process-content .section-desc {
        margin-left: auto;
        margin-right: auto
    }
}

@media(max-width:810px) {
    .process-grid {
        grid-template-columns: 1fr
    }
}

.impact-section {
    padding: 150px 0;
    position: relative;
    overflow: hidden
}

.impact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.impact-content .sub-label {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px
}

.impact-content .sub-label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: var(--primary-orange)
}

.impact-content .section-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px
}

.impact-content .section-desc {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1rem
}

.impact-visual {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
    margin: 0
}

.impact-img-wrapper {
    position: relative;
    border-radius: 20px;
    width: 100%;
    height: 500px;
    aspect-ratio: auto;
    border: 1px solid rgba(255, 255, 255, .1);
    overflow: hidden
}

.impact-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    box-shadow: none
}

.impact-unified-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: #0e1420cc;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-shadow: 0 20px 40px #0006;
    z-index: 2;
    transition: transform .3s ease
}

.impact-unified-card:hover {
    transform: translateY(-5px)
}

.impact-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left
}

.impact-divider {
    width: 1px;
    height: 40px;
    background: #ffffff1a
}

.impact-stat-item .card-icon {
    width: 48px;
    height: 48px;
    background: #f973161a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange)
}

.impact-stat-item .card-stat {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px
}

.impact-stat-item .card-label {
    font-size: .9rem;
    color: var(--text-gray);
    font-weight: 400
}

@media(max-width:1199px) {
    .impact-container {
        display: flex;
        flex-direction: column-reverse;
        gap: 60px
    }

    .impact-visual {
        max-width: 600px;
        margin: 0 auto 40px;
        padding-right: 0
    }

    .impact-content {
        text-align: left
    }

    .impact-content .sub-label {
        padding-left: 40px
    }

    .impact-content .sub-label:before {
        display: block
    }

    .impact-unified-card {
        padding: 20px;
        gap: 20px;
        right: -20px;
        bottom: -20px
    }
}

@media(max-width:600px) {

    .impact-img-wrapper,
    .approach-bg {
        height: 300px
    }

    .strategy-card {
        transform: scale(.7);
        transform-origin: bottom right;
        bottom: -30px;
        right: 10px
    }

    .impact-unified-card {
        right: 10px;
        bottom: 10px;
        transform: none;
        width: auto;
        max-width: calc(100% - 20px);
        padding: 16px;
        gap: 16px
    }

    .impact-stat-item .card-icon {
        width: 36px;
        height: 36px
    }

    .impact-stat-item .card-stat {
        font-size: 1.25rem
    }

    .impact-stat-item .card-label {
        font-size: .75rem
    }

    .impact-divider {
        height: 30px
    }

    .impact-stat-item {
        gap: 12px
    }

    .impact-stat-item .card-stat {
        font-size: 1.5rem
    }

    .impact-stat-item .card-label {
        font-size: .8rem
    }

    .service-card {
        height: 300px
    }

    .card-stat {
        font-size: 2rem
    }
}

.site-footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 80px 0 40px;
    margin-top: 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, .05);
    zoom: .909
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.site-footer {
    padding: 100px 0 50px;
    background: #0b101b;
    border-top: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    overflow: hidden
}

.site-footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(249, 115, 22, 0) 20%, var(--primary-orange) 50%, rgba(249, 115, 22, 0) 80%, transparent 100%);
    opacity: 1;
    box-shadow: 0 1px 15px #f9731666;
    z-index: 1
}

.site-footer:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    height: 60px;
    background: radial-gradient(ellipse at top, rgba(249, 115, 22, .15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 60px;
    gap: 40px
}

.footer-cta-text {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    color: #fff
}

.footer-btn {
    padding: 14px 32px;
    font-size: 1rem;
    flex-shrink: 0
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: #ffffff1a;
    margin-bottom: 60px
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px
}

.footer-col {
    display: flex;
    flex-direction: column
}

.brand-col {
    padding-right: 40px
}

.footer-logo img {
    height: 48px;
    width: auto;
    margin-bottom: 24px
}

.brand-desc {
    color: var(--text-gray);
    font-size: .95rem;
    line-height: 1.6;
    margin-bottom: 32px
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 32px
}

.social-links a {
    color: #fff;
    opacity: .7;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.social-links svg {
    width: 24px;
    height: 24px
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-orange);
    transform: translateY(-3px)
}

.copyright {
    color: #9ca3af99;
    font-size: .85rem;
    margin-top: auto
}

.location {
    color: #9ca3af80;
    font-size: .8rem;
    margin-bottom: 4px;
    margin-top: auto
}

.col-title {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 24px
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.footer-links a {
    color: #e5e7eb;
    font-size: .95rem;
    font-weight: 400;
    transition: color .3s ease
}

.footer-links a:hover {
    color: var(--primary-orange)
}

@media(max-width:1024px) {
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
        row-gap: 60px
    }

    .brand-col {
        order: 10;
        grid-column: 1 / -1;
        text-align: center
    }

    .brand-col,
    .brand-col .social-links {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .brand-col .social-links {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 24px
    }

    .copyright {
        white-space: nowrap;
        width: 100%;
        margin-top: 0;
        font-size: .75rem
    }
}

@media(max-width:768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px
    }

    .footer-cta-text {
        font-size: 2rem
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .brand-col {
        padding-right: 0
    }
}

#hero {
    position: sticky;
    top: 0;
    z-index: 1;
    will-change: transform, opacity;
    min-height: 100vh;
    transform-origin: center center
}

#services {
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark);
    box-shadow: 0 -50px 100px #00000080
}

.reveal {
    opacity: 0;
    transform: translateY(60px) scale(.95);
    filter: blur(2px);
    transition: opacity .8s cubic-bezier(.215, .61, .355, 1), transform .8s cubic-bezier(.215, .61, .355, 1), filter .8s cubic-bezier(.215, .61, .355, 1);
    will-change: opacity, transform, filter
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0)
}

.delay-100 {
    transition-delay: .1s
}

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

.delay-300 {
    transition-delay: .3s
}

.delay-400 {
    transition-delay: .4s
}

.delay-500 {
    transition-delay: .5s
}

.contact-form-glass {
    background: var(--glass-surface);
    border: var(--glass-border);
    box-shadow: var(--neu-shadow), var(--glass-shine);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    transition: transform .3s ease, box-shadow .3s ease
}

.contact-form-glass:hover {
    box-shadow: var(--neu-shadow-hover), var(--glass-shine)
}

.glass-input {
    width: 100%;
    background: #0003;
    border: var(--glass-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-family: inherit;
    outline: none;
    transition: all .3s ease;
    box-shadow: inset 0 2px 4px #0000004d
}

.glass-input:focus {
    border-color: var(--primary-orange);
    background: #0000004d;
    box-shadow: inset 0 2px 4px #0000004d, 0 0 15px #f9731626
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    z-index: 1001
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0e1420fa;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .4s cubic-bezier(.165, .84, .44, 1)
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px
}

.mobile-header-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.mobile-nav a,
.mobile-submenu-trigger {
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 100%;
    font-family: inherit
}

.mobile-submenu-trigger .arrow {
    transition: transform .3s ease
}

.mobile-submenu-trigger.active .arrow {
    transform: rotate(180deg)
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    padding-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, .1);
    margin-top: 0
}

.mobile-submenu.open {
    margin-top: 16px
}

.mobile-submenu ul {
    gap: 16px;
    padding-top: 8px;
    padding-bottom: 8px
}

.mobile-submenu a {
    font-size: 1.1rem;
    color: var(--text-gray)
}

.mobile-submenu a:hover {
    color: var(--primary-orange)
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .1)
}

@media(max-width:1200px) {

    .site-header .main-nav,
    .site-header .header-actions {
        display: none
    }

    .mobile-menu-btn {
        display: block
    }

    .header-inner {
        padding: 8px 16px;
        gap: 0;
        width: 90%;
        justify-content: space-between
    }

    .logo img {
        height: 40px
    }

    .hero-section h1 {
        font-size: 3.5rem !important
    }

    .services-grid,
    .features-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr) !important
    }

    .impact-visual {
        padding-right: 0;
        margin: 0 auto 40px;
        width: 100%;
        max-width: 600px;
        display: flex;
        justify-content: center
    }

    .impact-img-wrapper {
        margin: 0 auto
    }
}

@media(max-width:810px) {
    .container {
        padding: 0 16px
    }

    .hero-section {
        padding-top: 100px !important;
        min-height: 100vh;
        display: flex;
        align-items: center
    }

    .hero-content {
        margin-top: 0 !important;
        padding-top: 60px
    }

    .hero-section h1 {
        font-size: 2.5rem !important
    }

    .hero-section .lead {
        font-size: 1.1rem !important
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .impact-stats {
        grid-template-columns: 1fr !important
    }

    section,
    .services-section,
    .cta-section,
    .approach-section,
    .about-section,
    .why-us-section,
    .process-section,
    .impact-section {
        padding: 60px 0 !important
    }

    .about-section {
        min-height: 500px
    }

    .about-title {
        font-size: 1.75rem !important;
        margin-right: 0;
        margin-bottom: 24px;
        line-height: 1.3
    }

    .about-btn {
        padding: 10px 24px;
        font-size: .9rem
    }

    .form-row {
        grid-template-columns: 1fr !important
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

    .hero-content {
        max-width: 100%
    }
}

.services-section,
.approach-section,
.process-section,
.impact-section,
.about-section,
.why-us-section {
    position: relative;
    overflow: visible
}

.services-section:before,
.approach-section:before,
.process-section:before,
.impact-section:before,
.about-section:before,
.why-us-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent);
    z-index: 10
}

.services-section:after,
.approach-section:after,
.process-section:after,
.impact-section:after,
.about-section:after,
.why-us-section:after {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translate(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-orange);
    border-radius: 4px;
    box-shadow: 0 0 20px 2px #f9731666;
    opacity: .8;
    z-index: 11
}

.mobile-menu-btn,
.mobile-menu-overlay {
    display: none
}

@media(max-width:1199px) {
    .site-header {
        pointer-events: none
    }

    .header-inner {
        pointer-events: auto;
        position: relative;
        margin: 16px auto 0;
        width: 90%;
        max-width: 460px;
        padding: 10px 20px;
        border-radius: 9999px;
        background: #0e1420bf;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, .1);
        box-shadow: 0 10px 30px #0003;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .main-nav,
    .header-actions .lang-switch {
        display: none
    }

    .logo img {
        height: 36px
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        width: 36px;
        height: 36px;
        background: #ffffff14;
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        cursor: pointer;
        z-index: 9999;
        transition: all .3s cubic-bezier(.165, .84, .44, 1);
        -webkit-tap-highlight-color: transparent;
        margin-left: auto;
        box-shadow: 0 4px 10px #0000001a
    }

    .mobile-menu-btn:active {
        transform: scale(.92);
        background: #ffffff26
    }

    .mobile-menu-btn .line {
        width: 16px;
        height: 2px;
        background-color: #fff;
        border-radius: 4px;
        transition: all .3s cubic-bezier(.165, .84, .44, 1);
        transform-origin: center
    }

    body.menu-open .mobile-menu-btn .line:nth-child(1) {
        transform: translateY(6px) rotate(45deg)
    }

    body.menu-open .mobile-menu-btn .line:nth-child(2) {
        opacity: 0;
        transform: translate(-5px)
    }

    body.menu-open .mobile-menu-btn .line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg)
    }

    body.menu-open .mobile-menu-btn {
        background: #f9731626;
        border-color: var(--primary-orange)
    }

    body.menu-open .mobile-menu-btn .line {
        background-color: var(--primary-orange)
    }

    .mobile-call-to-action {
        display: none
    }

    .mobile-menu-overlay {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 130px;
        left: 50%;
        transform: translate(-50%) translateY(-20px);
        width: 80%;
        max-width: 360px;
        height: auto;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: #0e1420f2;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, .1);
        border-radius: 20px;
        padding: 16px 12px;
        box-shadow: 0 20px 50px #00000080;
        opacity: 0;
        visibility: hidden;
        z-index: 1001;
        pointer-events: auto;
        transition: all .4s cubic-bezier(.16, 1, .3, 1)
    }

    body.menu-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%) translateY(0)
    }

    .site-header.scrolled .mobile-menu-overlay {
        top: 90px
    }

    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        gap: 4px
    }

    .mobile-item>a,
    .accordion-trigger {
        font-family: Lexend, sans-serif;
        font-size: .85rem;
        font-weight: 500;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        text-align: center
    }

    .accordion-trigger .arrow {
        position: absolute;
        right: 0
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height .4s ease;
        margin-top: 0;
        padding-left: 0
    }

    .mobile-item.active .accordion-content {
        max-height: 1000px;
        margin-top: 10px;
        opacity: 1
    }

    .accordion-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0
    }

    .accordion-content li {
        margin: 0;
        padding: 0;
        width: 100%
    }

    .accordion-content li a {
        padding: 8px 12px;
        font-size: .85rem;
        color: var(--text-gray);
        background: #ffffff0d;
        border-radius: 0 !important;
        margin-bottom: 1px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%
    }

    .accordion-content li:first-child a {
        border-top-left-radius: 12px !important;
        border-top-right-radius: 12px !important
    }

    .accordion-content li:last-child a {
        margin-bottom: 0 !important;
        border-bottom-left-radius: 12px !important;
        border-bottom-right-radius: 12px !important
    }

    .mobile-header-actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .mobile-lang-switch {
        display: flex;
        background: #0003;
        border-radius: 30px;
        padding: 2px;
        flex-shrink: 0
    }

    .mobile-cta-btn {
        padding: 8px 16px !important;
        font-size: .85rem !important;
        height: auto !important;
        min-height: 36px;
        border-radius: 30px !important;
        white-space: nowrap;
        background: transparent !important;
        border: 1px solid var(--primary-orange) !important;
        color: var(--primary-orange) !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
        transition: all .3s ease
    }

    .mobile-cta-btn:hover {
        background: var(--primary-orange) !important;
        color: #fff !important
    }

    .mobile-cta-btn svg {
        width: 16px;
        height: 16px;
        transition: transform .3s ease
    }

    .mobile-cta-btn:hover svg {
        transform: translate(3px)
    }

    .mobile-lang-switch a {
        padding: 4px 12px;
        font-size: .75rem;
        color: #ddd;
        border-radius: 20px
    }

    .mobile-lang-switch a.active {
        background: var(--primary-orange);
        color: #fff
    }
}

@media(max-width:480px) {
    .header-cta-btn {
        display: none !important
    }

    .mobile-item>a,
    .accordion-trigger {
        font-size: 1.15rem
    }

    .mobile-menu-overlay {
        width: 94%
    }
}

@media(max-width:359px) {
    .header-inner {
        padding: 8px 16px
    }

    .logo img {
        height: 28px
    }

    .mobile-menu-btn {
        width: 36px;
        height: 36px
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #0e142099;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px #0000004d;
    z-index: 1000;
    transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
    text-decoration: none;
    overflow: visible
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #25d366;
    box-shadow: 0 12px 40px #25d36666;
    border-color: #ffffff4d
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #25d366;
    transition: fill .3s ease
}

.whatsapp-float:hover svg {
    fill: #fff
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translate(10px);
    background: #0e1420e6;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all .3s ease;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 4px 12px #0003
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) translate(0)
}

@media(max-width:768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px
    }

    .whatsapp-tooltip {
        display: none
    }
}

.consent-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%) translateY(100px);
    z-index: 2147483647;
    width: 90%;
    max-width: 780px;
    opacity: 0;
    pointer-events: none;
    transition: all .6s cubic-bezier(.16, 1, .3, 1)
}

.consent-toast.visible {
    transform: translate(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto
}

.consent-toast.hidden {
    display: none
}

.toast-glass {
    background: #0e1420d9;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 40px #0006, 0 0 0 1px #ffffff0d inset;
    border-radius: 100px;
    padding: 10px 12px 10px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%
}

.toast-icon {
    width: 36px;
    height: 36px;
    background: #ffffff0d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    flex-shrink: 0
}

.toast-content {
    flex-grow: 1;
    min-width: 0
}

.toast-text {
    margin: 0;
    font-size: .88rem;
    color: #e2e8f0;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

@media(min-width:769px) {
    .toast-text {
        white-space: normal;
        max-width: 100%
    }
}

.link-orange {
    color: #f97316 !important;
    text-decoration: underline !important;
    font-weight: 500
}

.toast-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.btn-accept-sm {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    white-space: nowrap
}

.btn-accept-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px #f973164d
}

.btn-reject-sm {
    background: #ffffff0d;
    color: #9ca3af;
    border: 1px solid rgba(255, 255, 255, .05);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap
}

.btn-reject-sm:hover {
    background: #ffffff1a;
    color: #fff
}

.btn-settings {
    width: 36px;
    height: 36px;
    min-width: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s ease
}

.btn-settings:hover {
    border-color: #ffffff4d;
    color: #fff;
    background: #ffffff0d
}

.consent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease
}

.consent-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: #0009;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.modal-glass {
    width: 90%;
    max-width: 480px;
    background: #0e1420;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    padding: 0;
    box-shadow: 0 40px 80px #0009;
    transform: scale(.9) translateY(20px);
    transition: all .4s cubic-bezier(.16, 1, .3, 1);
    overflow: hidden;
    position: relative
}

.modal-glass:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent)
}

.consent-modal.active .modal-glass {
    transform: scale(1) translateY(0)
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 0;
    position: relative
}

.header-title {
    display: contents
}

.icon-box {
    width: 32px;
    height: 32px;
    background: #f973161a;
    border-radius: 8px;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    white-space: nowrap
}

.modal-close {
    background: none;
    border: none;
    color: #6b7280;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color .2s;
    line-height: 1
}

.modal-close:hover {
    color: #fff
}

.modal-body {
    padding: 24px
}

.modal-intro {
    font-size: .95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 24px
}

.pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #ffffff05;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all .2s ease
}

.pref-item:hover {
    background: #ffffff0a;
    border-color: #ffffff1a
}

.pref-item.disabled {
    cursor: default;
    opacity: .7
}

.pref-info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.pref-title {
    font-weight: 600;
    color: #fff;
    font-size: .95rem
}

.pref-desc {
    font-size: .8rem;
    color: #6b7280
}

.toggle-wrapper {
    position: relative
}

.toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.toggle-switch {
    width: 44px;
    height: 24px;
    background: #ffffff1a;
    border-radius: 20px;
    position: relative;
    transition: background .3s ease
}

.toggle-switch .knob {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform .3s cubic-bezier(.16, 1, .3, 1);
    box-shadow: 0 2px 4px #0003
}

.toggle-input:checked+.toggle-switch {
    background: var(--primary-orange)
}

.toggle-input:checked+.toggle-switch .knob {
    transform: translate(20px)
}

.toggle-switch.checked {
    background: var(--primary-orange);
    opacity: .5
}

.toggle-switch.checked .knob {
    transform: translate(20px)
}

.modal-footer {
    padding: 20px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    align-items: center
}

.btn-reject-all-text {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: .9rem;
    cursor: pointer;
    font-weight: 500;
    transition: color .2s
}

.btn-reject-all-text:hover {
    color: #fff;
    text-decoration: underline
}

.btn-save-prefs {
    background: #fff;
    color: #000;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s ease
}

.btn-save-prefs:hover {
    background: #f1f1f1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px #fff3
}

@media(max-width:768px) {
    .consent-toast {
        width: calc(100% - 32px);
        bottom: 24px;
        border-radius: 24px;
        flex-direction: column;
        padding: 20px;
        align-items: flex-start;
        max-width: none;
        transform: translate(-50%) translateY(150px)
    }

    .toast-glass {
        border-radius: 24px;
        flex-direction: column;
        padding: 20px;
        align-items: flex-start;
        width: 100%;
        box-sizing: border-box
    }

    .toast-text {
        white-space: normal;
        text-align: left
    }

    .toast-icon {
        margin-bottom: 8px
    }

    .toast-actions {
        width: 100%;
        justify-content: space-between;
        margin-top: 16px;
        gap: 6px
    }

    .btn-accept-sm,
    .btn-reject-sm {
        flex: 1;
        justify-content: center;
        text-align: center;
        padding: 10px 8px;
        font-size: .8rem;
        white-space: nowrap;
        min-width: 0
    }
}

/* Mobile Scroll Animation Optimization */
@media (max-width: 768px) {
    .reveal {
        filter: none !important;
        transform: translateY(20px) scale(0.98) !important;
        transition: opacity 0.5s ease-out, transform 0.5s ease-out !important;
    }
}

/* Contact Page Split Layout */
.contact-split-layout {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: 100px;
    /* Header space */
    position: relative;
    overflow: hidden;
}

.split-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
}

.split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    z-index: 2;
}

.split-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    z-index: 2;
}

.split-separator {
    display: none;
    /* Hidden on mobile */
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(249, 115, 22, 0.5) 50%, rgba(255, 255, 255, 0.1) 80%, transparent);
    position: relative;
}

/* Orb effect for the left side */
.split-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
}

@media (min-width: 769px) {
    .contact-split-layout {
        justify-content: center;
        align-items: center;
        padding-top: 80px;
    }

    .split-container {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        height: auto;
        min-height: 600px;
    }

    .split-left {
        flex: 1;
        align-items: flex-start;
        text-align: left;
        padding-right: 60px;
        justify-content: center;
    }

    .split-right {
        flex: 1;
        padding-left: 60px;
        justify-content: center;
    }

    .split-separator {
        display: block;
        margin: 0 20px;
    }

    /* Enhance the separator with a glowing dot */
    .split-separator::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 4px;
        height: 60px;
        background: var(--primary-orange);
        border-radius: 99px;
        box-shadow: 0 0 15px var(--primary-orange);
    }
}

/* Policy Pages (Privacy & Terms) */
.policy-section {
    padding-top: 370px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.policy-header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 40px;
    margin-bottom: 270px;
}

.policy-title {
    color: var(--primary-orange);
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.policy-date {
    color: #ccc;
    font-size: 1rem;
    font-weight: 400;
    white-space: nowrap;
}

.policy-highlight {
    color: var(--primary-orange) !important;
}

/* Policy Content Headings */
.policy-content h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 500;
}

.policy-content p {
    color: #9ca3af;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .policy-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .policy-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 60px;
        text-align: center;
    }

    .policy-title {
        font-size: 2.5rem;
    }

    .policy-date {
        font-size: 0.9rem;
    }

    .policy-content h3 {
        font-size: 1.75rem;
    }

    .policy-content p {
        font-size: 1rem;
    }
}