/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.mobile-break {
    display: none;
}

:root {
    --item-spacing: 3rem;
    --card-padding: 2rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter Tight', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 18px 120px;
    z-index: 1000;
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    cursor: pointer;
}

.logo {
    width: 24px;
    height: 24px;
    border: 2px solid #FFCF00;
    border-radius: 50%;
    flex: none;
}

.logo-name,
.logo-name-mobile {
    display: none;
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: #FFCF00;
}

.btn-download {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    background: #FFCF00;
    border-radius: 8px;
    color: #000000;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: none;
    white-space: nowrap;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 207, 0, 0.3);
}

/* Mobile Navigation */
@media (max-width: 767px) {
    .navbar {
        padding: 12px 12px;
    }

    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        box-sizing: border-box;
        width: 24px;
        height: 24px;
        border: 2px solid #FFCF00;
        flex-shrink: 0;
    }

    .logo-name-mobile {
        display: block;
        color: #FFFFFF;
        font-family: 'Inter Tight';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        white-space: nowrap;
    }

    .btn-download {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 16px;
        background: #FFCF00;
        border-radius: 8px;
        font-family: 'Inter Tight';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        color: #000000;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero About Section */
.hero-about {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 80px 120px;
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    flex: none;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 37px;
}

.hero-name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.name-first {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-size: 100px;
    line-height: 121px;
    margin: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.name-last {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 68px;
    margin: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
}

.hero-image {
    position: relative;
    width: 538px;
    height: 806px;
    flex: none;
}

.hero-image .portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gradient-overlay {
    position: absolute;
    pointer-events: none;
}

.gradient-radial {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.50) 60%);
}

.gradient-right {
    width: 80px;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.gradient-top {
    width: 100%;
    height: 80px;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.gradient-bottom {
    width: 100%;
    height: 120px;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 767px) {
    .hero-about {
        flex-direction: column;
        padding: 0;
        gap: 0;
        position: relative;
    }

    .hero-content {
        max-width: 100%;
        position: absolute;
        bottom: 60px;
        left: 24px;
        right: 24px;
        z-index: 2;
    }

    .hero-image {
        width: 100%;
        max-width: none;
    }

    .hero-image .portrait {
        object-position: center;
    }

    .name-first {
        font-size: 48px;
        line-height: 58px;
    }

    .name-last {
        font-size: 32px;
        line-height: 38px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 22px;
    }
}

/* Other Sections */
.section {
    padding: 8rem 0 4rem;
    display: flex;
    align-items: center;
}

.section .container {
    width: 100%;
}

.section h1 {
    font-size: 56px;
    font-weight: 600;
}

.section p {
    font-weight: 700;
    font-size: 1.1rem;
    color: #ffffff;
}

/* About Section */

#about p {
    font-size: 1.25rem;
    max-width: 800px;
    margin-bottom: 1.5rem;
}

/* Experience Section */
.experiences-section {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Experience Block 1 - Where I'm now */
.experience-block-1 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px;
    min-height: 591px;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    max-width: 1440px;
}

.bg-polestar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.experience-block-1 .content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 72px;
    max-width: 528px;
    margin-top: 182px;
    margin-bottom: 182px;
    z-index: 1;
}

.experience-block-1 .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.experience-block-1 .block-title {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 68px;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.experience-block-1 .company-info {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
    color: #FFFFFF;
    margin: 0;
}

.experience-block-1 .company-link {
    color: #FFCF00;
    text-decoration: underline;
    text-decoration-color: #FFCF00;
    text-underline-offset: 4px;
}

.experience-block-1 .location {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
}

.icon-inline {
    width: 56px;
    height: 56px;
    vertical-align: baseline;
}

/* Experience Block 2 - Collaborated with */
.experience-block-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px;
    gap: 120px;
    width: 100%;
    max-width: 1440px;
}

.experience-block-2 .top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.experience-block-2 .block-title {
    max-width: 700px;
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 68px;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

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

.worked-with .company-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    height: auto;
    max-height: 56px;
}

.worked-with .company-logo:hover {
    opacity: 1;
}

/* Case Studies Section */
.case-studies-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px;
    position: relative;
    background: #000000;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: auto;
}

.case-studies-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    gap: 80px;
    width: 100%;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.case-study-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex: none;
    align-self: stretch;
    flex-grow: 0;
}

.case-study-item:hover {
    transform: translateY(-5px);
}

.case-study-label {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    opacity: 0.8;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.case-study-title {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 68px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-title a {
    text-decoration: none;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-title .arrow-icon {
    display: inline-block;
    width: 56px;
    height: 56px;
    vertical-align: middle;
}

/* Own Products Section */
.own-products-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px;
    gap: 120px;
    background: #000000;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    min-height: auto;
}

.own-products-title {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 68px;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    width: 100%;
}

.product-block {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    align-self: stretch;
    width: 100%;
    gap: 0;
    height: 355px;
}

.product-image {
    width: 600px;
    height: 355px;
    flex-shrink: 0;
    flex-grow: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 88px 40px;
    gap: 48px;
    width: 600px;
    height: 355px;
    border-radius: 24px;
    flex: none;
    order: 1;
    flex-grow: 1;
}

.product-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 122px;
    height: 122px;
    flex: none;
    flex-grow: 0;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 4px;
    flex: none;
    flex-grow: 0;
}

.product-name {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
    width: 305px;
    height: 48px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

.own-products-section .product-description {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #FFFFFF;
    opacity: 0.6;
    margin: 0;
    height: 29px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.product-view-link {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
    white-space: nowrap;
    height: 24px;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.product-view-link .arrow-icon-product {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.product-view-link:hover {
    text-decoration: underline;
}

.product-divider {
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.2;
    align-self: stretch;
}

/* Testimonials Section */
.testimonials-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 120px;
    width: 100%;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-title {
    width: 100%;
    max-width: 700px;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-size: 56px;
    line-height: 68px;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.cards-people {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    gap: 24px;
    width: 100%;
    isolation: isolate;
}

.person-card {
    position: relative;
    width: 100%;
    max-width: 283px;
    height: 377px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.person-card:hover {
    transform: translateY(-8px);
}

.person-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.person-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.person-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
}

.person-info .person-name {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    color: #FFFFFF;
    opacity: 0.9;
    margin: 0 0 8px 0;
    padding-right: 16px;
}

.person-info .person-title {
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
    padding-right: 16px;
}

/* Testimonial Modal */
.testimonial-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow: hidden;
}

.testimonial-modal.active {
    display: block;
}

.modal-background {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1;
}

.modal-close {
    position: absolute;
    width: 28px;
    height: 28px;
    right: 40px;
    top: 48px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 0.7;
}

/* Navigation Arrows */
.modal-nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
    transition: all 0.3s ease;
    opacity: 1;
    pointer-events: auto;
}

.modal-nav-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-nav-arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav-arrow.left {
    left: 40px;
}

.modal-nav-arrow.right {
    right: 40px;
}

.modal-nav-arrow svg {
    width: 24px;
    height: 24px;
}

.modal-cards-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0 calc(50vw - 300px);
    gap: 32px;
    position: absolute;
    width: 100vw;
    height: 620px;
    left: 0;
    top: 60px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    z-index: 2;
}

.modal-cards-container::-webkit-scrollbar {
    display: none;
}

.modal-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 48px 40px 40px;
    gap: 48px;
    isolation: isolate;
    width: 600px;
    min-width: 600px;
    height: 620px;
    background: #202020;
    border-radius: 24px;
    flex: none;
    scroll-snap-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    opacity: 0.3;
    transform: scale(0.95);
}

.modal-card.active {
    opacity: 1;
    transform: scale(1);
}

.modal-card-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    filter: blur(2px);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modal-card.active .modal-card-content {
    filter: blur(0);
}

.modal-quote-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 20px;
    width: 100%;
    flex: 1;
    overflow-y: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modal-quote-section::-webkit-scrollbar {
    display: none;
}

.quote-icon {
    width: 44px;
    height: 35px;
    flex: none;
}

.modal-testimonial-text {
    width: 100%;
    font-family: 'Inter Tight';
    font-style: italic;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 0;
    white-space: pre-line;
}

.modal-author-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 20px;
    width: 100%;
    position: sticky;
    bottom: 0;
    background: #202020;
    padding-top: 20px;
}

.modal-author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex: none;
}

.modal-author-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
}

.modal-author-name {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    opacity: 0.9;
    margin: 0;
}

.modal-author-title {
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    opacity: 0.8;
    margin: 0;
}

.modal-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 10px;
    position: fixed;
    width: 222px;
    height: 6px;
    left: calc(50% - 111px);
    bottom: 40px;
    z-index: 3;
}

.indicator-dot {
    width: 48px;
    height: 6px;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0.4;
    border-radius: 24px;
    flex: none;
    transition: opacity 0.3s ease;
}

.indicator-dot.active {
    opacity: 1;
}


/* Footer */
.footer {
    background-color: #000000;
    padding: 2rem 0;
    border-top: 1px solid #222222;
}

.footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 120px;
    text-align: left;
}

.footer p {
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 767px) {

    .section h1 {
        font-size: 2rem;
    }

    .section p {
        font-size: 1rem;
    }

    #about p {
        font-size: 1.1rem;
    }

    /* Mobile Experience Blocks */
    .experience-block-1 {
        padding: 60px 40px;
        min-height: 400px;
    }

    .experience-block-1 .content {
        margin-top: 80px;
        margin-bottom: 80px;
        gap: 40px;
    }

    .experience-block-1 .block-title {
        font-size: 36px;
        line-height: 44px;
    }

    .experience-block-1 .company-info {
        font-size: 24px;
        line-height: 32px;
    }

    .experience-block-1 .location {
        font-size: 18px;
        line-height: 24px;
    }

    .icon-inline {
        width: 32px !important;
        height: 32px !important;
    }

    .experience-block-2 {
        padding: 60px 40px;
        gap: 60px;
    }

    .experience-block-2 .block-title {
        font-size: 32px;
        line-height: 42px;
    }

    .worked-with {
        row-gap: 0;
        column-gap: 40px;
    }

    .worked-with .company-logo {
        flex: 0 0 calc(25% - 30px);
        max-width: 120px;
        max-height: 40px;
    }

    .case-studies-section {
        padding: 80px 40px;
    }

    .case-studies-block {
        gap: 60px;
    }

    .case-study-label {
        font-size: 20px;
        line-height: 28px;
    }

    .case-study-title {
        font-size: 40px;
        line-height: 52px;
    }

    /* Own Products Responsive */
    .own-products-section {
        padding: 80px 40px;
    }

    .own-products-section .container {
        gap: 80px;
    }

    .own-products-title {
        font-size: 40px;
        line-height: 52px;
    }

    .product-block {
        flex-direction: column;
        align-items: center;
    }

    .product-image {
        width: 100%;
    }

    .product-info-container {
        transform: none;
        padding: 40px 20px;
        min-height: auto;
        flex-direction: column;
        gap: 24px;
    }

    .product-info {
        transform: none;
        flex-direction: row;
        gap: 24px;
    }

    .product-text {
        transform: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-name {
        font-size: 32px;
        line-height: 40px;
    }

    .product-description {
        font-size: 20px;
        line-height: 28px;
    }

    .product-view-link {
        transform: none;
        font-size: 18px;
        line-height: 24px;
    }

    .product-logo {
        width: 80px;
        height: 80px;
    }

    /* Testimonials Responsive */
    .testimonials-block {
        padding: 80px 40px;
    }

    .testimonials-title {
        font-size: 40px;
        line-height: 52px;
    }

    .cards-people {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .person-card {
        max-width: 100%;
        width: 100%;
    }

    .modal-cards-container {
        width: 100vw;
        left: 0;
        top: 60px;
        height: calc(100vh - 180px);
        max-height: calc(100vh - 180px);
        padding: 0 20px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .modal-cards-container::-webkit-scrollbar {
        display: none;
    }

    .modal-card {
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        height: calc(100vh - 180px);
        max-height: calc(100vh - 180px);
        padding: 48px 32px 32px;
        scroll-snap-align: center;
    }

    .modal-card-content {
        overflow-y: auto;
        overflow-x: hidden;
        height: 100%;
    }

    .modal-close {
        right: 20px;
        top: 20px;
    }

    .modal-testimonial-text {
        font-size: 18px;
        line-height: 27px;
    }

    .modal-indicator {
        bottom: 40px;
    }

    .modal-nav-arrow {
        display: none;
    }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) and (max-width: 1439px) {
    .navbar {
        padding: 18px 80px;
    }

    .hero-about {
        padding: 80px 80px;
        gap: 32px;
    }

    .hero-content {
        max-width: 450px;
    }

    .hero-image {
        width: 450px;
        height: 674px;
    }

    .hero-section {
        padding: 80px 80px;
    }

    .experience-block-1,
    .experience-block-2 {
        padding: 80px;
    }

    .experience-block-2 {
        gap: 80px;
    }

    .worked-with {
        justify-content: flex-start;
    }

    .case-studies-section {
        padding: 80px;
    }

    .own-products-section {
        padding: 80px;
        gap: 80px;
    }

    .product-image {
        width: 400px;
    }

    .product-info-container {
        width: auto;
        flex: 1;
        gap: 24px;
    }

    .testimonials-block {
        padding: 80px;
    }

    .modal-cards-container {
        top: 50%;
        transform: translateY(-50%);
    }

    .footer {
        padding: 32px 0;
    }

    .footer .container {
        padding: 0 80px;
    }
}

/* Tablet Breakpoint */
@media (min-width: 768px) and (max-width: 1023px) {
    .navbar {
        padding: 16px 80px;
    }

    .nav-container {
        gap: 24px;
        flex-direction: row;
    }

    .nav-links {
        display: none;
    }

    .nav-menu {
        gap: 24px;
    }

    .logo {
        box-sizing: border-box;
        width: 24px;
        height: 24px;
        border: 2px solid #FFCF00;
    }

    .logo-name {
        display: block;
        color: #FFFFFF;
        font-family: 'Inter Tight';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        white-space: nowrap;
    }

    .btn-download {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 8px 16px;
        background: #FFCF00;
        border-radius: 8px;
        font-family: 'Inter Tight';
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 19px;
        color: #000000;
    }

    .hero-about {
        flex-direction: column;
        padding: 0;
        gap: 0;
        position: relative;
    }

    .hero-content {
        max-width: 100%;
        position: absolute;
        bottom: 80px;
        left: 80px;
        right: 80px;
        z-index: 2;
    }

    .hero-image {
        width: 100%;
        height: 1200px;
        max-width: none;
    }

    .hero-image .portrait {
        object-position: center;
    }

    .hero-section {
        padding: 80px 80px;
    }

    .experience-block-1,
    .experience-block-2 {
        padding: 80px;
    }

    .experience-block-1 .block-title {
        text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
    }

    .worked-with {
        justify-content: flex-start;
        gap: 40px;
    }

    .case-studies-section {
        padding: 80px;
    }

    .own-products-section {
        padding: 80px;
        gap: 80px;
    }

    .product-block {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        height: auto;
    }

    .product-info-container {
        gap: 24px;
    }

    .testimonials-block {
        padding: 80px;
    }

    .cards-people {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 24px;
    }

    .person-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }

    .person-card[data-name="melvin"] {
        display: none;
    }

    .modal-cards-container {
        top: 50%;
        transform: translateY(-50%);
    }

    .footer {
        padding: 24px 0;
    }

    .footer .container {
        padding: 0 80px;
    }
}

/* Mobile Breakpoint */
@media (max-width: 767px) {
    .navbar {
        padding: 18px 24px;
    }

    .container {
        padding: 0 24px;
    }

    .section h1 {
        font-size: 1.75rem;
    }

    .nav-links {
        gap: 0.75rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    /* Responsive Experience Blocks - Mobile */
    .experience-block-1 {
        padding: 40px 24px;
        min-height: 350px;
    }

    .experience-block-1 .content {
        margin-top: 72px;
        margin-bottom: 60px;
        gap: 30px;
    }

    .experience-block-1 .block-title {
        font-size: 28px;
        line-height: 36px;
    }

    .experience-block-1 .company-info {
        font-size: 20px;
        line-height: 28px;
    }

    .experience-block-1 .location {
        font-size: 16px;
        line-height: 22px;
    }

    .experience-block-2 {
        padding: 72px 24px;
        gap: 40px;
    }

    .experience-block-2 .block-title {
        font-size: 24px;
        line-height: 32px;
    }

    .worked-with {
        justify-content: flex-start;
        gap: 24px;
    }

    .worked-with .company-logo {
        max-width: 80px;
      
    }

    .case-studies-section {
        padding: 72px 24px;
    }

    .mobile-break {
        display: inline;
    }

    .case-studies-block {
        gap: 48px;
    }

    .case-study-label {
        font-size: 16px;
        line-height: 24px;
    }

    .case-study-title {
        font-size: 28px;
        line-height: 36px;
    }

    /* Own Products Mobile */
    .own-products-section {
        padding: 72px 24px;
        gap: 60px;
    }

    .own-products-section .container {
        gap: 60px;
    }

    .own-products-title {
        font-size: 32px;
        line-height: 40px;
    }

    .product-block {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        height: auto;
    }

    .product-image {
        width: 100%;
        height: auto;
    }

    .product-info-container {
        width: 100%;
        height: auto;
        padding: 40px 24px;
    }

    .product-divider {
        margin: 0;
        flex-shrink: 0;
    }

    .product-name {
        font-size: 28px;
        line-height: 36px;
    }

    .own-products-section .product-description {
        font-size: 18px;
        line-height: 24px;
    }

    .product-view-link {
        font-size: 16px;
        line-height: 20px;
    }

    .product-logo {
        width: 100px;
        height: 100px;
    }

    /* Testimonials Mobile */
    .testimonials-block {
        padding: 72px 24px;
    }

    .testimonials-title {
        font-size: 32px;
        line-height: 40px;
    }

    .testimonials-container {
        gap: 48px;
    }

    .cards-people {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-between;
        gap: 16px;
    }

    .person-card {
        flex: 0 0 calc(50% - 8px);
        max-width: calc(50% - 8px);
        height: 320px;
    }

    .person-info {
        bottom: 16px;
        left: 16px;
    }

    .person-info .person-name {
        font-size: 20px;
        line-height: 24px;
    }

    .modal-card {
        padding: 56px 24px 24px;
        min-height: 500px;
    }

    .modal-testimonial-text {
        font-size: 16px;
        line-height: 32px;
    }

    .modal-author-name {
        font-size: 16px;
        line-height: 24px;
    }

    .modal-author-title {
        font-size: 14px;
        line-height: 17px;
    }

    .modal-author-avatar {
        width: 48px;
        height: 48px;
    }

    .quote-icon {
        width: 44px;
        height: 35px;
    }

    .modal-indicator {
        width: 180px;
        left: calc(50% - 90px);
        gap: 8px;
    }

    .indicator-dot {
        width: 38px;
        height: 5px;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .footer .container {
        padding: 0 24px;
    }
}

/* Large Desktop Breakpoint */
@media (min-width: 1440px) {
    .modal-cards-container {
        top: 50%;
        transform: translateY(-50%);
    }
}
