* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0ea5e9;
    --accent-light: #38bdf8;
    --light: #f8fafc;
    --gray: #94a3b8;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0f172a;
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

h2::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 4px;
    background: linear-gradient(to right, var(--accent), transparent);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(to right, var(--accent), var(--accent-light));
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(to right, var(--accent-light), var(--accent));
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background-color: rgba(26, 26, 46, 0.95);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--accent);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content,
.about-cinematic-content,
.contact-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, transparent, #1a1a2e00);
    z-index: 1;
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/FP.png") center/cover no-repeat;
    opacity: 0.1;
}

.floating-element {
    position: absolute;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
}

.floating-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.about-cinematic {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    background: url("assets/FP.png") center/cover no-repeat;
    color: #fff;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.75);
}

.about-cinematic-content {
    position: relative;
    max-width: 700px;
    animation: fadeUp 1s ease;
}

.about-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-tagline {
    font-size: 26px;
    color: #38bdf8;
    margin-bottom: 20px;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 30px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trusted-brands-section {
    padding: 28px 0 10px;
    background:
        radial-gradient(circle at top center, rgba(14, 165, 233, 0.16), transparent 38%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.trusted-showcase {
    padding: 18px 14px 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 30px 60px rgba(2, 6, 23, 0.35);
    text-align: center;
}

.trusted-title {
    margin-bottom: 6px;
    color: #fff;
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    line-height: 1.1;
}

.trusted-title::after {
    display: none;
}

.trusted-copy {
    max-width: 540px;
    margin: 0 auto 12px;
    color: #94a3b8;
    font-size: 0.88rem;
}

.trusted-logos {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 4px 0;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.trusted-logos-track {
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    min-width: 200%;
    animation: trustedLogosScroll 22s linear infinite;
}

.trusted-logo-card {
    width: 62px;
    height: 62px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 28px rgba(2, 6, 23, 0.28);
}

.trusted-logo-card img {
    display: block;
    border-radius: 50%;
}

.trusted-logo-card--contain img {
    width: 92%;
    height: 92%;
    object-fit: contain;
}

.trusted-logo-card--cover img {
    width: 140%;
    height: 140%;
    object-fit: cover;
    object-position: center;
}

.trusted-logo-card--idp {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.trusted-logo-card--idp img {
    width: 110%;
    height: 110%;
}

.trusted-logo-card--she-invests {
    background: #0a57b8;
}

.trusted-logo-card--she-invests img {
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: center;
}

.trusted-logo-card--od-logo,
.trusted-logo-card--fitus-logo {
    background: #ffffff;
}

.trusted-logo-card--od-logo img {
    width: 96%;
    height: 96%;
    object-fit: contain;
}

.trusted-logo-card--pe-logo,
.trusted-logo-card--mm-logo {
    background: #050505;
}

.trusted-logo-card--pe-logo img {
    width: 92%;
    height: 92%;
    object-fit: contain;
}

.trusted-logo-card--fitus-logo img {
    width: 112%;
    height: 112%;
    object-fit: contain;
}

.trusted-logo-card--mm-logo img {
    width: 185%;
    height: 185%;
    object-fit: cover;
    object-position: center;
}

@keyframes trustedLogosScroll {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.portfolio-section {
    padding: 100px 0;
    background: #0f172a;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 600;
}

.portfolio-block {
    margin-bottom: 40px;
}

.portfolio-copy-block {
    max-width: 860px;
    margin: 48px auto 28px;
    text-align: center;
}

.portfolio-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.portfolio-title {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 700;
    line-height: 0.98;
}

.portfolio-title::after {
    display: none;
}

.portfolio-highlight {
    margin-bottom: 18px;
    color: var(--accent-light);
    font-size: clamp(2rem, 6vw, 4rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: Georgia, "Times New Roman", serif;
}

.portfolio-description {
    max-width: 760px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    line-height: 1.6;
}

.long-video iframe,
.short-video iframe {
    border-radius: 20px;
    overflow: hidden;
    background: #020617;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    background: #000 !important;
    color: #fff !important;
    padding: 20px !important;
    margin: 5px;
    border-radius: 4px;
}

.contact {
    background-color: var(--secondary);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--accent);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

footer {
    background-color: #0f172a;
    padding: 60px 0 30px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 10px;
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-bg {
        opacity: 0.2;
    }

    .trusted-showcase {
        padding: 16px 12px 8px;
        border-radius: 16px;
    }

    .trusted-title {
        font-size: 1.2rem;
    }

    .trusted-copy {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .trusted-logo-card {
        width: 52px;
        height: 52px;
    }

    .trusted-logos-track {
        gap: 7px;
        animation-duration: 18s;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 30px;
    }

    .portfolio-copy-block {
        margin: 34px auto 20px;
    }

    .portfolio-kicker {
        padding: 8px 16px;
        margin-bottom: 18px;
        font-size: 0.78rem;
        letter-spacing: 0.2em;
    }

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

    .portfolio-highlight {
        font-size: 2.3rem;
    }

    .portfolio-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 70px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-tagline {
        font-size: 20px;
    }

    .about-cinematic {
        height: 70vh;
    }
}
