/* Fonts */
@font-face {
    font-family: 'Lab2';
    src: url('fonts/Lab2-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* Design Tokens */
:root {
    --bg-green: #28ef8a;
    --text: black;
    --muted: #6e6e6e;
    --card: #f6f6f6;
    --border: #e6e6e6;
    --accent: black;
    --grid-gap: 18px;
    --radius: 16px;
}

@media (max-width: 960px) {
    :root {
        --grid-gap: 28px;
    }
}

@media (max-width: 560px) {
    :root {
        --grid-gap: 20px;
    }
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Lab2', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.5;
    color: var(--text);
    background-color: white;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: #FFC5F4;
}

::-moz-selection {
    background-color: #FFC5F4;
}

.wrap {
    margin: 0px 15px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--grid-gap);
}

.about-page .wrap > * {
    grid-column: 1 / -1;
}

/* Typography */
h1 {
    font-size: clamp(40px, 6vw, 130px);
    line-height: 1.1;
    font-weight: normal;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing:-0.03em;
    transform: translateX(-0.45vw);
}

h2 {
    font-size: 50px;
    font-weight: normal;
    color: var(--accent);
   /* margin-bottom: 24px;*/
    text-transform: uppercase;
    line-height: 1.08;
    max-width: 990px;
    letter-spacing: -0.03em;
}

.solution .wrap h2 {
    font-size: 110px;
    transform: translateX(-7px);
}

h3 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: normal;
    color: var(--accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 16px;
}

/* All caps with letter spacing */
.section-label,
.card-title,
.logo,
.client-logo,
.service-category h3 {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Hero Section */
.hero-wrapper {
    height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    background-color: var(--bg-green);
    flex: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 30px;
}

.logo-img {
    height: 33px;
    width: auto;
}

.hero-image {
    position: absolute;
    right: -75px;
    top: 50%;
    transform: translateY(-50%);
    height: 85%;
    width: auto;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url('images/bg1.png');*/
background-color: #FFBDF3;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

.hero > .wrap {
    position: relative;
    z-index: 1;
}

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 60vw;
}

.hero-text h1 {
    margin: 0;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 140px;
    height: 36px;
    font-size: 18px;
    text-transform: uppercase;
    color: black;
    text-decoration: none;
    margin-top: 19px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hero-button .button-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}

.hero-button span {
    position: relative;
    top: -1px;
    z-index: 1;
    padding: 0;
}

.hero-button:hover {
    color: white;
}

.hero-button:hover .button-shape {
    filter: invert();
}

/* Tagline */
.tagline {
    padding: 48px 0;
    text-align: center;
    background-color: white;
}

.tagline p {
    font-size: 22px;
    max-width: 800px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: clamp(48px, 8vw, 120px) 0;
}

.section-label {
    font-size: 30px;
    color: var(--text);
    font-weight: normal;
   /* margin-bottom: 24px;*/
    display: block;
    letter-spacing: -0.03em;
}

/* Problem Section */
.problem {
    background-color: #F0F0F0;
    padding: clamp(48px, 8vw, 120px) 0;
    padding-top:70px;
    padding-bottom:36px;
}

.problem .wrap {
    display: flex;
    flex-direction: column;
  /*  gap: clamp(24px, 4vw, 48px);*/
  gap:40px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.chart {
    /*background-color: var(--card);*/
    /*border-radius: var(--radius);*/
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 0;
}

.chart-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Solution Section */
.solution {
    background-color: white;
    padding-bottom: 20px;
    padding-top: 380px;
}

.solution .wrap {
    /*display: grid;    
    grid-template-columns: 1fr 2fr;*/
    display: flex;
    flex-direction: column;
    /*gap: clamp(16px, 4vw, 64px);*/
    gap: 9px;
    align-items: start;
}

.solution-intro {
    font-size: 18px;
    max-width: 700px;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Video Reveal Section */
.video-bg {
    position: fixed;
    top: 0;
    left: 30px;
    width: calc(100% - 60px);
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

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

.photo {
    height: 54vw;
    background: transparent;
    margin: 0;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
}

/* Top and Bottom Section Bars */
.top-section-bar,
.bottom-section-bar {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

.bottom-section-bar {
    align-items: flex-end;
}

.svg-shape {
    height: 50px;
    width: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.svg-shape.left {
    background-image: url('assets/top-left.svg');
}

.svg-shape.right {
    background-image: url('assets/top-right.svg');
}

.bottom-section-bar .svg-shape.left {
    background-image: url('assets/bottom-left.svg');
}

.bottom-section-bar .svg-shape.right {
    background-image: url('assets/bottom-right.svg');
}

.svg-shape.center {
    height: 30px;
    width: calc(100vw - 100px);
    background-color: white;
}

/* Solution Points with Sticky Numbers */
.solution-points-section {
    background-color: white;
    /*padding: clamp(48px, 8vw, 120px) 0;*/
    padding: 270px 0 41vh;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: clamp(16px, 4vw, 64px);
    align-items: start;
}

.sticky-num {
    position: sticky;
    top: calc(50vh - 70px);
    /*transform: translateY(-50%);*/
}

.point-number {
   /* font-size: clamp(72px, 14vw, 160px);*/
   font-size:200px;
    font-weight: normal;
    color: #DCDCDC;
    line-height: 0.9;
    letter-spacing: -0.03em;
    transform: translateX(-13px);
    z-index: 0;
}

#solution-panels {
    z-index: 1;
}

.solution-panel {
    min-height: 120vh;
  /*  padding-block: 16vh;*/
    /*border-bottom: 1px solid var(--border);*/
    /*margin-top: -70px;*/
}

.solution-panel:last-child {
    border-bottom: 0;
    min-height: 30px;
}

.solution-panel h3 {
    font-size: clamp(28px, 4.5vw, 96px);
    font-weight: normal;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    max-width: 17ch;
    line-height: 1.2;

}

.solution-panel p {
    max-width: 48ch;
    color: var(--text);
}

.solution-panel:last-child p {
    margin-bottom: 0px;
}

/* How It Works Section - Horizontal Scroll */
.hscroll {
    position: relative;
    /*background-color: var(--bg-green);*/
    padding: clamp(48px, 8vw, 120px) 0 0;
}

.hscroll__pin {
    position: sticky;
    top: 0;
    /*height: 100vh;*/
    overflow: hidden;
    background-color: var(--bg-green);
}

.hscroll .section-label {
    position: sticky;
    top: 0;
    z-index: 10;
    margin: 0 30px 24px 30px;
    background-color: var(--bg-green);
    /*padding-top: clamp(48px, 8vw, 120px);
    padding-bottom: 24px;*/
    min-width: 460px;
}

.hscroll__track {
    position: relative;
    display: flex;
    align-items: flex-start;
    height: 100%;
    padding-inline: 500px 500px 500px 0;
    gap: var(--grid-gap);
    will-change: transform;
    padding-top: clamp(48px, 12vw, 720px);
    padding-top: 100px;
    padding-bottom: 100px;

}

.process-card {
    position: relative;
    flex: 0 0 auto;
    width: clamp(280px, 44vw, 560px);
    border-radius: var(--radius);
    overflow: hidden;
    background: transparent;
    isolation: isolate;
}

.process-card .card-image {
    width: 100%;
    aspect-ratio: 620/590;
    background-size: cover;
    background-position: center;
    /*background-color: #22232b;*/
}

.card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    background: white;
    color: var(--text);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
    padding: 28px clamp(20px, 2.2vw, 32px);
    transform: translateY(calc(100% - 104px));
    transition: transform .45s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.process-card:hover .card-overlay,
.process-card:focus-within .card-overlay {
    transform: translateY(0);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-title {
    font-size: clamp(20px, 3vw, 32px);
    letter-spacing: -0.01em;
    font-weight: normal;
    text-transform: uppercase;
    margin: 0;
}

.card-duration {
    display: flex;
    align-items: center;
    transform: translateY(1px);
}

.card-desc {
    color: var(--text);
    opacity: 0.92;
    font-size: clamp(14px, 1.6vw, 18px);
    line-height: 1.6;
    margin: 80px 0 0 0;
}

/* Client Logos Section */
.clients {
    padding: 60px 0;
    overflow: hidden;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 100px;
    align-items: center;
}

.client-logo {
    font-size: 18px;
    font-weight: normal;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: none;
    height: 45px;
    display: block;
}

.clients-title {
    font-size: 30px;
    margin-top: 42px;
    margin-bottom: 100px;
}

/* Services Section */
.services-title {
    font-size: 30px;
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.service-category {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: 24px;
}

.service-category h3 {
    font-size: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    text-align: left;
}

.service-category ul {
    list-style: none;
}

/* Contact Section */
.contact {
    padding: clamp(48px, 8vw, 120px) 0 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: start;
}

.contact-left p {
    margin-top: 10px;
}

.contact-title {
    font-size: clamp(40px, 6vw, 130px);
    line-height: 1.1;
    margin: 0;
    transform: translateX(-0.45vw);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 14px;
    color: var(--text);
    font-weight: normal;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.service-group {
    gap: 16px;
}

.service-buttons {
    display: block;
}

.service-btn {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.service-btn:hover svg path,
.service-btn.active svg path {
    fill: black;
    stroke: black;
}

.service-btn:hover svg text,
.service-btn.active svg text {
    fill: white;
}

.form-input,
.form-textarea {
    border: none;
    border-bottom: 1px solid var(--text);
    background: transparent;
    padding: 8px 0;
    font-size: 18px;
    font-family: inherit;
    color: var(--text);
    outline: none;
    border-radius: 0;
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

.submit-btn {
    align-self: flex-end;
    background: transparent;
    border: none;
    font-size: 24px;
    font-weight: normal;
    color: var(--text);
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
    margin-top: 8px;
    transition: letter-spacing 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(3px);
}

.submit-btn:hover {
    color: black;
    letter-spacing: 7px;
}

.submit-text {
    transition: letter-spacing 0.3s ease;
}

.submit-btn:hover .submit-text {
    letter-spacing: 7px;
}

.submit-btn:disabled {
    cursor: not-allowed;
}

.submit-btn:disabled .submit-text {
    opacity: 1;
}

.submit-loader {
    width: 35px;
    height: 35px;
    display: none;
    opacity: 1;
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-status {
    margin-top: -27px;
    text-align: center;
}


.success-message {
    font-size: 14px;
    color: var(--text);
    font-weight: normal;
    text-align: right;
}

/* Contact Footer */
.contact-footer {
    padding: 48px 0 30px;
    margin-top: 200px;
}


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

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

.footer-center {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-contact {
    gap: 8px;
}

.footer-contact a {
    color: var(--text);
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 14px;
    color: var(--text);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-social a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
}

.footer-social a:hover {
    opacity: 0.7;
}

.service-category li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 0;
}

/* Responsive Design */
@media (max-width: 960px) {
    .section-grid {
        grid-template-columns: 1fr;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 560px) {
    .logo-sticky {
        padding: 18px;
    }

    .wrap {
        margin: 0 18px;
    }

    .logo-img {
        height: 33px;
    }

    .section-label {
        font-size: 20px;
    }

    h2 {
        font-size: 40px;
    }

    h1 {
        font-size: 60px;
    }

    .hero-text {
        max-width: none;
    }

    .problem {
        padding-top: 50px;
        padding-bottom: 66px;
    }

    .problem .wrap {
        gap: 20px;
    }

    .problem h2 {
        margin-bottom: 20px;
    }

    .solution {
        padding-top: 50px;
    }

    .photo {
        height: 500px;
    }

    .video-bg {
        left: 18px;
        width: calc(100% - 36px);
    }

    .svg-shape {
        width: 30px;
        height: 30px;
    }

    .svg-shape.center {
        height: 18px;
        width: calc(100vw - 60px);
    }

    .hscroll__pin {
        position: relative;
        overflow: visible;
    }

    .hscroll .section-label {
        position: relative;
        font-size: 30px;
        margin: 45px 18px 24px 18px;
        min-width: auto;
    }

    .hscroll__track {
        display: flex;
        flex-direction: column;
        padding-inline: 0;
        padding-top: 0;
        padding-bottom: 0;
        gap: 0;
        transform: none !important;
    }

    .process-card {
        width: calc(100% - 37px);
        margin: 0 18px -18px;
        background-color: transparent;
    }

    .card-overlay {
        position: relative;
        transform: translateY(-38px) !important;
        border-radius: var(--radius);
        margin-top: 0;
        transition: none !important;
        padding: 20px;
    }

    .card-desc {
        margin: 10px 0 0 0;
    }

    .clients {
        padding: 20px 0 0;
    }

    .clients-title {
        margin-bottom: 57px;
    }

    .services {
        padding-top: 100px;
    }

    .service-category {
        padding: 18px;
    }

    .client-logo img {
        height: 35px;
    }

    .marquee-track {
        gap: 70px;
    }

    .hscroll {
        margin-bottom: 0;
    }

    .contact-title {
        font-size: 54px;
    }

    .service-group {
        max-width: 250px;
    }

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


    .form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-footer {
        margin-top: 80px;
        padding: 48px 0 18px;
    }

    .footer-content {
        flex-direction: column;
        gap: 3px;
        align-items: flex-start;
    }

    .footer-left {
        order: 1;
        width: 222px;
    }

    .footer-contact {
        gap: 3px;
    }

    .footer-center {
        order: 2;
        margin-top: 50px;
        font-size: 13px;
    }

    .footer-right {
        order: 3;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .hero-button {
        width: 120px;
        height: calc((120px * 36) / 140);
        font-size: 16px;
    }

    .hero > .wrap {
        transform: translateY(-60px);
    }

    .hero-image {
        position: absolute;
        bottom: -135px;
        right: -50px;
        top: auto;
        height: 270px;
    }

    .tagline {
        padding: 24px 0;
    }

    .tagline p {
        font-size: 16px;
        max-width: 330px;
    }

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

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

    .solution .wrap h2 {
        font-size: 72px;
    }

    .solution-points-section {
        padding: 90px 0 90px;
    }

    .sticky-num {
        top: calc(50vh - 110px);
    }

    .point-number {
        font-size: 180px;
    }

    .solution-panel {
        min-height: 80vh;
        padding-block: 8vh;
    }

    .solution-panel h3 {
        font-size: 40px;
    }

    .chart {
        padding: 0;
    }

    .chart-axis-labels {
        font-size: 10px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 0;
    background-color: #FFBDF3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.testimonials-divider {
    width: 100%;
    height: clamp(60px, 12vw, 180px);
    background-color: #f0f0f0;
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    position: relative;
    z-index: 2;
}

.testimonials-left {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.testimonials-title {
    font-size: clamp(40px, 5vw, 80px);
    line-height: 1.1;
    text-align: left;
    transform: translateX(-0.45vw);
    text-transform: uppercase;
    word-break: break-word;
    white-space: normal;
}

.testimonials-title span {
    display: block;
    line-height: 1.1;
}

.testimonials-right {
    width: 100%;
}

.testimonials-marquee-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 60px);
    height: 80vh;
    overflow: hidden;
    position: relative;
}

.testimonials-marquee {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.testimonials-marquee-track {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 4vw, 40px);
    will-change: transform;
    position: relative;
}

.testimonial-card {
    background-color: var(--card);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 40px);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 300px;
}

.testimonial-company-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.testimonial-quote {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--text);
    margin: 0;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border);
    flex-shrink: 0;
}

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

.testimonial-author-name {
    font-size: 16px;
    font-weight: normal;
    color: var(--text);
}

.testimonial-author-title {
    font-size: 14px;
    color: var(--muted);
}

/* Mobile Styles for Testimonials */
@media (max-width: 960px) {
    .testimonials-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .testimonials-marquee-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 32px;
    }
    
    .testimonials-marquee {
        height: 60vh;
    }
    
    .testimonials-title {
        margin-bottom: 0;
    }
}

@media (max-width: 560px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-title {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .testimonials-marquee-container {
        gap: 24px;
    }
    
    .testimonials-marquee {
        height: 50vh;
    }
    
    .testimonial-card {
        padding: 24px;
        min-height: 280px;
    }
}

/* About Page */
.about-page {
    background-color: white;
}

.about-hero {
    padding: 15px 0 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}


.about-menu {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.about-menu-sticky {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 100;
}

.about-menu::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--text);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: stretch;
    flex: 1;
    min-height: 0;
}

.about-hero-panel {
    background-color: var(--bg-green);
    border-radius: 18px;
    padding: clamp(24px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 30px);
}

.about-hero-label {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: clamp(32px, 4.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
    max-width: 20ch;
}

.about-hero-media {
    border-radius: 18px;
    overflow: hidden;
    background: #f0f0f0;
    height: calc(100vh - 30px);
}

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

.media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: #6b6b6b;
    background: linear-gradient(135deg, #e9e2d8, #f6efe7);
    border: 1px solid #e2ddd6;
}

.about-intro {
    padding: clamp(40px, 7vw, 90px) 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 60px);
    align-items: start;
}

.about-intro-title {
    font-size: clamp(28px, 3.6vw, 52px);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-intro-text p {
    max-width: 720px;
    color: #2b2b2b;
}

.about-team {
    padding: clamp(50px, 9vw, 120px) 0;
}

.about-title {
    font-size: clamp(54px, 10vw, 140px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    margin-bottom: clamp(24px, 5vw, 60px);
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--grid-gap);
    align-items: start;
}

.team-member {
    margin-bottom: 0;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-name {
    font-size: clamp(28px, 3.6vw, 52px);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: black;
}

.team-aka {
    display: block;
    font-size: clamp(28px, 3.6vw, 52px);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 12px;
    color: black;
}

.team-aka a {
    color: black;
    text-decoration: none;
    border-bottom: 2px solid black;
}

.team-aka a:hover {
    text-decoration: none;
}

.about-team-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 80px;
    grid-column: 2 / 5;
}

.about-team-copy p {
    color: black;
}

.about-team-media {
    display: flex;
    flex-direction: column;
    gap: var(--grid-gap);
    align-items: flex-end;
    grid-column: 6 / 9;
    justify-content: flex-start;
}

.team-photo {
    border-radius: 16px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 3 / 3;
    width: 33vw;
    margin-left: auto;
}

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

.about-approach {
    padding: clamp(40px, 7vw, 90px) 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: var(--grid-gap);
    margin-top: 20px;
}

.approach-card {
    grid-column: span 2;
    border-radius: 30px;
    padding: 0;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.approach-card-content {
    padding: 24px;
}

.approach-card h3 {
    font-size: 40px;
    margin: 20px 0 0 0;
    text-transform: uppercase;
    letter-spacing: -0.016em;
    color: black;
    font-weight: normal;
    line-height: 1.2;
}

.approach-card p {
    font-size: 19px;
    line-height: 1.3;
    margin: 0;
    color: black;
}

.approach-icon {
    height: 160px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    flex-shrink: 0;
}

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

.about-enter {
    padding: clamp(50px, 9vw, 120px) 0;
}

.about-enter-title {
    font-size: clamp(42px, 7vw, 110px);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-enter-copy {
    max-width: 720px;
}

.about-enter-media {
    margin-top: 32px;
    border-radius: 18px;
    overflow: hidden;
    min-height: 320px;
}

.about-enter-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 960px) {
    .about-hero-grid,
    .about-intro-grid,
    .about-team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-team-copy {
        grid-column: 1 / -1;
    }
    
    .about-team-media {
        grid-column: 1 / -1;
        align-items: flex-start;
    }
    
    .team-photo {
        width: 100%;
        max-width: 400px;
    }

    .about-hero-media {
        min-height: 260px;
    }

    .about-team-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .approach-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .about-hero {
        padding: 24px 0 50px;
    }

    .about-hero-top {
        padding-bottom: 16px;
    }

    .about-menu::after {
        width: 20px;
    }

    .about-hero-panel {
        padding: 20px;
    }

    .about-hero-title {
        font-size: 34px;
    }

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

    .about-intro-grid {
        gap: 16px;
    }

    .about-team-media {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }
}
