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

:root {
    --eerie-black: #1e1e1e;
    --licorice: #111111;
    --mine-shaft: #333333;
    --monsoon: #898989;
    --silver: #bebebe;
    --star-dust: #9b9b9b;
    --white: #ffffff;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--mine-shaft);
    background: var(--white);
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    font-size: 16px;
}

section {
    overflow: hidden;
}

@font-face {
    font-family: "Earth Phototype";
    src: url("./fonts/Earth\ Phototype-font.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Headings use Manrope */
h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.hero__title--highlight,
.promo-banner__title,
.features-section__title,
.feature-card__title,
.usp-section__title,
.usp-section__subtitle,
.usp-point__title,
.pioneers-section__title,
.pioneers-section__subtitle,
.accomplishments-section__title,
.stat-item__value,
.pillar__title,
.testimonial-card__title,
.testimonial-card__stats,
.faq-section__title,
.blog-section__title,
.blog-post__title,
.collaborators-section__title,
.contact-section__title,
.contact-form__title,
.footer__banner-title,
.footer__column-title,
.navbar__logo h1 {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
    max-width: 1920px;
    margin: 0 auto;
}

.navbar {
    margin: 0 auto;
}

.navbar__container {
    background: var(--white);
    border-radius: 25px;
    padding: 5px 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    gap: 40px;
}

.navbar__left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar__app-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    width: clamp(20px, 2vw, 24px);
    aspect-ratio: 1;
    max-width: 20px;
    max-height: 20px;
}

.app-icon__square {
    width: 100%;
    height: 100%;
    background: var(--mine-shaft);
    border-radius: 2px;
}

.navbar__logo {
    display: flex;
    align-content: center;
    align-items: center;
}

.navbar__logo svg {
    width: 160px;
    height: 60px;
}

.navbar__logo h1 {
    font-size: clamp(20px, 1.8vw, 27px);
    font-weight: 400;
    color: var(--mine-shaft);
    letter-spacing: 0;
    margin: 0;
    font-family: "Earth Phototype", sans-serif;
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
    position: static;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}

.navbar__menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.navbar__link {
    text-decoration: none;
    color: var(--mine-shaft);
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 700;
    letter-spacing: 0;
    padding: 6px 24px;
    padding-right: 15px;
    border-radius: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
}

.navbar__link--active {
    background: var(--eerie-black);
    color: var(--white);
    border-radius: 10px;
}

.navbar__link--has-icon::after {
    content: "";
    width: 6px;
    height: 8px;
    margin-left: 10px;
    display: inline-block;
    background: url("images/polygon-2-3.svg") center/contain no-repeat;
    transform: translateY(3px);
}

.navbar__link--has-icon.navbar__link--active::after {
    background-image: url("images/polygon-1-9.svg");
}

.navbar__link:hover:not(.navbar__link--active) {
    color: #7B3FE4;
}

.navbar__dropdown-icon {
    font-size: 10px;
    color: #666;
    display: inline-block;
    line-height: 1;
    margin-left: 6px;
    transition: transform 0.3s;
}

.navbar__dropdown-icon--white {
    color: #ffffff;
}

.navbar__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.navbar__search {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.navbar__search:hover {
    opacity: 0.7;
}

.navbar__search svg {
    width: 20px;
    height: 20px;
}

.navbar__get-in-touch {
    background: var(--white);
    color: var(--mine-shaft);
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, rgba(69, 208, 189, 1), rgba(68, 182, 233, 1)) border-box;
    padding: 12px 20px;

    border-radius: 50px;
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
    white-space: nowrap;
    font-family: 'Manrope', sans-serif;
    min-width: 140px;
}

.navbar__get-in-touch:hover {
    background: #14B8A6;
    color: #ffffff;
    border-color: #14B8A6;
}

.navbar__mobile-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 230px 0 130px;
    background:
        #ecf0f4;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/mask-glow-1.png") bottom center / cover no-repeat;
    transform: scale(.8);
    transform-origin: bottom left;
    opacity: 0.7;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 20%, #000 80%, transparent 100%);
}

.hero__container {
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    width: calc(100% - 190px);
}

.hero__content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
}

.hero__left {
    display: flex;
    align-items: flex-start;
}

.hero__title {
    font-size: clamp(36px, 5vw, 80px);
    font-weight: 400;
    line-height: 1.05;
    color: var(--licorice);
    margin: 0;
    letter-spacing: clamp(-1px, -0.1vw, -1.5px);
}

.hero__title--neural {
    color: #4A72B2;
}

.hero__title--networks {
    color: #5C7CC2;
}

.hero__right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
}

.hero__description {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    color: var(--mine-shaft);
    margin: 0;
    font-weight: 500;
    max-width: 420px;
}

.hero__cta {
    background: #F77171;
    color: white;
    border: none;
    padding: 15px 32px;
    padding-right: 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-family: 'Sora', sans-serif;
    min-width: 180px;
}

.hero__cta svg {
    width: 14px;
    height: 14px;
}

.hero__cta:hover {
    background: #EF4444;
    transform: translateY(-1px);
}

/* Promotional Banner Section */
.promo-banner {
    position: relative;
    z-index: 2;
    background: #ecf0f4;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border: none;
    padding: 0 20px 20px;
}

.promo-banner__container {
    margin: 0 auto;
    position: relative;
    background:
        linear-gradient(90deg,
            rgba(130, 88, 200, 0.5) 0%,
            rgba(44, 132, 200, 0.5) 100%),
        rgb(156, 158, 161);
    padding: 0;
    min-height: 500px;
    border-radius: 25px;
}

.promo-banner__background {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;

}

.promo-banner__pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.promo-banner__pattern-img {
    position: absolute;
    right: 290px;
    bottom: 30px;
    width: 260px;
    max-width: 45%;
}

.promo-banner__ribbons {
    display: none;
}

.ribbon {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(40px);
}

.ribbon--1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.4);
    top: -150px;
    right: 150px;
    transform: rotate(45deg);
}

.ribbon--2 {
    width: 350px;
    height: 350px;
    background: rgba(224, 224, 255, 0.5);
    top: 30%;
    right: 100px;
    transform: rotate(-25deg);
}

.ribbon--3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.3);
    bottom: -80px;
    right: 250px;
    transform: rotate(55deg);
}

.promo-banner__content {
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    min-height: 100%;
    padding: 60px;
}

.promo-banner__left {
    display: flex;
    height: 100%;
    z-index: 2;
}

.promo-banner__title {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 400;
    max-width: 480px;
    line-height: 40px;
    color: var(--white);
    margin: 0;
    color: #ecf0f4;

}

.promo-banner__right {
    position: absolute;
    right: 0px;
    bottom: 0px;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.promo-banner__right p {
    max-width: 120px;
    text-align: left;
    margin: auto;
    margin-bottom: 24px;
}

.promo-banner__watch-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 35px;
    background: #ecf0f4;
    color: #111;
    text-decoration: none;
    justify-content: center;
    border-radius: 0;
    border-top-left-radius: 25px;
    font-size: 16px;
    border: none;
    position: relative;
}

.corner-svg-left {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: -18px;
    color: currentColor;
}

.corner-svg-right {
    content: "";
    position: absolute;
    top: -18px;
    right: 0;
    color: currentColor;
}

.corner-svg-bottom {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0;
    color: currentColor;
}

.promo-banner__logo {
    font-weight: 600;
    font-size: clamp(60px, 15vw, 250px);
    color: var(--white);
    position: absolute;
    z-index: 100;
    pointer-events: none;
    font-family: 'Sora', sans-serif;
    white-space: nowrap;
    left: 60px;
    bottom: 0;
    transform: translateY(31%);
    color: #ecf0f4;
}

.promo-banner__description {
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--white);
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    text-align: right;
    width: 100px;
    line-height: 1.6;
    opacity: 1;
}


.promo-banner__play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.promo-banner__watch-btn svg {
    width: 18px;
    height: 18px;
    display: block;
    color: #ecf0f4;
}

.promo-banner__watch-btn span {
    color: rgba(51, 51, 51, 1);
    font-weight: 500;
}

/* Tinker with Neural Network Section */
.tinker-section {
    padding: 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 140px 0;
}

.tinker-section__container {
    max-height: 650px;
    height: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: flex-start;
}

.tinker-section__left {
    position: relative;
    height: 100%;
    max-width: 490px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.tinker-section__gradient {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 650px;
    height: 650px;
    background: url("images/ellipse-150-2.svg") left bottom/contain no-repeat;
    opacity: 2;
    pointer-events: none;
    z-index: 0;
}

.tinker-section__pattern {
    position: absolute;
    left: 0;
    top: 0;
    width: 600px;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.tinker-section__pattern-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    opacity: 0.8;
}

.tinker-section__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0 190px 0 0;
}

.tinker-section__title {
    font-size: 80px;
    font-weight: 400;
    line-height: 1.05;
    color: #1A1A1A;
    margin: 0;
    text-align: left;
    letter-spacing: -3px;
    line-height: 1.2;
    max-width: 900px;
}

.tinker-section__title--gradient {
    background: linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.tinker-section__logos {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    padding-top: 40px;
}

.tinker-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;

}

.tinker-logo img {
    max-width: 100px;
}

.tinker-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.tinker-logo__square {
    width: 44px;
    height: 44px;
    background: #1A1A1A;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    flex-shrink: 0;
}

.tinker-logo__oval {
    width: 60px;
    height: 32px;
    border: 1px solid #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    color: #1A1A1A;
    flex-shrink: 0;
}

.tinker-logo__circle {
    width: 48px;
    height: 48px;
    border: 1.5px solid #6B7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 600;
    color: #4B5563;
    flex-shrink: 0;
    font-family: 'Sora', sans-serif;
    text-align: center;
    padding: 2px;
}

.tinker-logo__name {
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.tinker-logo__subtitle {
    font-size: 10px;
    font-weight: 400;
    color: #64748B;
    line-height: 1.2;
    margin-top: 2px;
}

.tinker-logo__text {
    display: flex;
    flex-direction: column;
}

/* Services Section */
.services {
    background: #ffffff;
}

.services__container {
    /* max-width: 1350px; */
    margin: 0 auto;
    width: calc(100% - 190px);
}

.services__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1305px;
}

.services__tag {
    display: block;
    font-size: 14px;
    color: #64748B;
    margin-bottom: 8px;
    font-weight: 300;
}

.services__title {
    font-size: 37px;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -2px;
}

.services__header-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
}

.services__subtitle {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    justify-content: center;
    border: 1px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;

    color: #1A1A1A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    width: 170px;
    cursor: pointer;
}


.btn:hover {
    border-color: #7B3FE4;
    color: #7B3FE4;
}

.btn svg {
    transition: all 0.2s;
}

.btn:hover svg {
    transform: rotate(45deg);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 190px;
    gap: 20px;
}

/* Card General Styles */
.service-card {
    position: relative;
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
    max-height: 561px;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card__title {
    font-size: 25px;
    font-weight: 400;
    line-height: 35px;
    margin: 0 0 20px;
}

.service-card__title .service-card__title--black {
    color: #1A1A1A;
}

.service-card__title a {
    text-decoration: none;
    color: #fff;
}

.service-card__title a:hover {
    text-decoration: underline;
}

.service-card__description {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    opacity: 0.9;
}

.service-card__description.card_1 {
    max-width: 340px;
}

.service-card__button {
    position: absolute;
    bottom: 0;
    right: 5px;
    width: 60px;
    height: 60px;
    background: transparent;
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.service-card__button svg {
    scale: 1.2;
}

/* Specific Card Variants */
.service-card--teal {
    background: linear-gradient(90deg, rgba(69, 208, 189, 1) 0%, rgba(68, 182, 233, 1) 100%);
    ;
    color: #ffffff;
    grid-row: span 2;
    min-height: 540px;
    justify-content: flex-end;
}

.service-card--purple {
    background: #ac8de0;
    color: #ffffff;
    grid-row: span 2;
    min-height: 560px;
    position: relative;
}

.service-card--purple::before {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 0px;
    width: 280px;
    height: 90px;
    pointer-events: none;

    background-image:
        url("images/vector-16-2.svg"),
        url("images/vector-16-2.svg"),
        url("images/vector-18-1.svg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 90px auto, 90px auto, 90px auto;

    /* 3 cái nằm cạnh nhau */
    background-position: 0% 100%, 50% 100%, 100% 100%;
}

.service-card--purple .service-card__dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 15%;
    height: 50%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 1;
    z-index: 1;
    border-radius: 40%;
    overflow: hidden;
}

.service-card--purple .service-card__xxx {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.6;
    z-index: 1;
}

.service-card--purple .service-card__xxx img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.4;
}

.service-card--light {
    background: url("images/mask-group-11@2x.png") center/cover no-repeat;
    color: #1A1A1A;
    padding: 25px 48px;
    height: 190px;
    max-width: 388px;
    display: flex;
    justify-content: end;
}

.service-card--light .service-card__title {
    font-size: 24px;
    margin: 0;
}

.service-card--light .service-card__graphic {
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.8;
}

.service-card--blue {
    background: linear-gradient(90deg, rgba(130, 88, 200, 0.6) 0%, rgba(44, 132, 200, 0.6) 100%);
    color: #ffffff;
    min-height: 258px;
    position: relative;
    padding: 30px 40px;
    max-width: 388px;
}

.service-card--blue .service-card__bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-card--blue .service-card__bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.service-card--blue .service-card__content {
    position: relative;
    z-index: 2;
}

.service-card__icon img {
    display: block;
    margin-bottom: 30px;
}

/* Team Section */

/* Marquee Section */
.marquee {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    padding: 60px 0;
    white-space: nowrap;
}

.marquee__content {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
}

.marquee:hover .marquee__content {
    animation-play-state: paused;
}

.marquee__content span {
    font-size: 120px;
    font-weight: 400;
    color: rgba(17, 17, 17, 1);
    margin-right: 80px;
    letter-spacing: -3px;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* USP Section */
.usp-section {
    padding: 15px 80px 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.usp-section__container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.usp-section__header {
    text-align: left;
    margin-bottom: 45px;
}

.usp-section__tag {
    display: block;
    font-size: 14px;
    color: #64748B;

    font-weight: 300;
}

.usp-section__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    color: #1A1A1A;
    margin: 0;
    letter-spacing: -2.5px;
    max-width: 600px;
}

.usp-section__points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.usp-point {
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.usp-point__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 8px;
}

.usp-point__icon--ai {
    color: #6366F1;
}

.usp-point__icon--solutions {
    color: #3B82F6;
}

.usp-point__icon--tech {
    color: #8B5CF6;
}

.usp-point__icon--development {
    color: #4F46E5;
}

.usp-item__title {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 12px 0;
}

.usp-item__description {
    font-size: 13px;
    line-height: 1.5;
    color: #64748B;
    margin: 0;
    max-width: 260px;
}

/* Pioneers Section */
.pioneers-section {
    background: #ffffff;
    padding: 0 20px;
}

.pioneers-section__container {
    width: 100%;
    background: #fff;
    border-radius: 25px;
    padding: 120px 80px;
    position: relative;
    color: #ffffff;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    z-index: 1;
}

.pioneers-section__bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 450px;
}

.pioneers-section__col--left img {
    object-fit: contain;
}

.pioneers-section__container:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #161616;
    transform: skewY(-2.5deg);
    bottom: 0;
    right: 0;
    border-radius: 25px;
    pointer-events: none;
}

.pioneers-section__stroke-text {
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(130, 88, 200, 1);
    z-index: 0;
    text-transform: capitalize;
    margin-bottom: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.pioneers-section__content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.pioneers-section__tag {
    display: inline-block;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 24px;
    font-weight: 300;
    text-transform: lowercase;
    width: 100%;
}

.pioneers-section__title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 40px;
    letter-spacing: -2px;
}

.pioneers-section__text {
    margin-bottom: 60px;
}

.pioneers-section__text p {
    font-size: 16px;
    line-height: 30px;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 24px;
}

.pioneers-section__text p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

.pioneers-section__cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid transparent;
    background:
        linear-gradient(#161616, #161616) padding-box,
        /* màu nền nút (đổi theo nền bạn) */
        linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;
    color: #fff;

    border-radius: 15px;
    padding: 15px 26px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pioneers-section__cta:hover {
    opacity: 0.7;
}

.pioneers-section__container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.pioneers-section__spacer {
    display: none !important;
}

.pioneers-section__right-col {
    display: contents !important;
}

.pioneers-section__stroke-text {
    grid-column: 1;
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
}

.pioneers-section__content {
    grid-column: 2;
}


/* Accomplishments Section */
.accomplishments-section {
    width: calc(100% - 190px);
    padding: 95px 0;
    margin: 0 auto;
}

.accomplishments-section__container {
    max-width: 1400px;
    margin: 0 auto;
}

.accomplishments-section__tag {
    display: block;
    font-size: 14px;
    color: #64748B;
    margin-bottom: 16px;
    font-weight: 300;
}

.accomplishments-section__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    margin-bottom: 36px;
    color: #1A1A1A;
    letter-spacing: -2px;
}

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

.stat-card {
    padding: 60px 0;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.stat-card--dark {
    background: #161616;
    color: #ffffff;
    width: clamp(320px, 50vw, 610px);
    padding: 60px;
}

.stat-card--light {
    background: transparent;
    color: #1A1A1A;
    width: 100%;
}

.stat-card__value {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 40px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(99, 102, 241, 0.6);
}

.stat-card--dark .stat-card__value {
    -webkit-text-stroke: 1px rgba(99, 102, 241, 1);
}

.stat-card__value--purple {
    -webkit-text-stroke: 1px rgba(139, 92, 246, 0.6);
}

.stat-card__value--blue {
    -webkit-text-stroke: 1px rgba(59, 130, 246, 0.6);
}

.stat-card__label {
    font-size: 20px;
    font-weight: 600;
    line-height: 35px;
    margin-bottom: 16px;
    color: rgba(17, 17, 17, 1)
}

.stat-card--dark .stat-card__label {
    color: rgba(255, 255, 255, 1)
}

.stat-card__description {
    font-size: 16px;
    line-height: 30px;
    color: rgba(51, 51, 51, 1);
    margin: 0;
}

.stat-card--dark .stat-card__description {
    max-width: 300px;
    color: rgba(255, 255, 255, 1)
}

/* Technology Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    gap: 32px;

}

.tech-item__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.tech-item__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: #1A1A1A;
    margin: 0;
}

.tech-item__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-item__list li {
    font-size: 16px;
    line-height: 40px;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    padding-left: 15px;
    position: relative;
}

.tech-item__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 4px;
    height: 4px;
    background: #1b1b1b;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Testimonials Section */
.testimonials-section {
    padding: 20px;
    background: #ffffff;
}

.testimonials-section__container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
}

.testimonial-card {
    padding: 120px 90px;
    border-radius: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
}

.testimonial-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
}

.testimonial-card--dark {
    background: rgba(31, 31, 31, 1);
    color: white;
    justify-content: flex-start;
}

.testimonial-card__quote-icon {
    font-size: 120px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card__quote {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Sora', sans-serif;
}

.testimonial-card__author {
    margin-top: auto;
}

.testimonial-card__name {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Sora', sans-serif;
}

.testimonial-card__navigation {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 2px;
    position: absolute;
    bottom: 0;
    left: 90px;
    background: #fff;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    padding: 0 10px;
}

.testimonial-card__navigation--corner .corner-svg-left {
    left: -20px;
}

.testimonial-card__nav-btn {
    width: 40px;
    height: 40px;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: none;
    background: transparent;
}

.testimonial-card__nav-btn:hover {
    color: #000000b3;
}

.testimonial-card__nav-btn svg {
    width: 20px;
    height: 20px;
}

.testimonial-card--gradient {
    background: linear-gradient(90deg,
            rgba(130, 88, 200, 0.5) 0%,
            rgba(44, 132, 200, 0.5) 100%);
    color: white;
    text-align: left;
    justify-content: flex-start;
    position: relative;
    padding: 50px;
}

.testimonial-card__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    font-family: 'Sora', sans-serif;
    margin-top: 30px;
}

.testimonial-card__title {
    font-size: 37px;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.testimonial-card__stats {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.testimonial-card__stats-value {
    font-size: 100px;
    font-weight: 600;
    line-height: 0.5;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.testimonial-card__stats-label {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Sora', sans-serif;
}

/* FAQ Section */
.faq-section {
    padding: 120px 30px;
    background: rgba(240, 242, 244, 1);
    margin: 0 20px;
    border-radius: 25px;
}

.faq-section__container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
    align-items: start;
    background: rgba(240, 242, 244, 1);
}

.faq-section__visual {
    background: transparent;
    border-radius: 0;
    padding: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-section__pattern {
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
}

.faq-section__content {
    display: flex;
    flex-direction: column;
    max-width: 900px;
}

.faq-section__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(17, 17, 17, 1);
    margin-left: 10px;
    font-family: 'Sora', sans-serif;
}

.faq-section__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    margin-bottom: 40px;
    color: #1F2937;
    letter-spacing: -2px;
    max-width: 600px;
}

.faq-item {
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
    overflow: visible;
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(51, 51, 51, 1);
}


.faq-item__question {
    width: 100%;
    padding: 0;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 300;
    color: rgba(17, 17, 17, 1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
    gap: 16px;
    margin-bottom: 25px;
}

.faq-item__question:hover {
    color: #7B3FE4;
}

.faq-item__question span {
    flex: 1;
    font-family: 'Sora', sans-serif;
}

.faq-item__question svg {
    width: 10px;
    height: 10px;
    color: #6B7280;
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
}

.faq-item--active .faq-item__question svg {
    transform: rotate(90deg);
    color: #7B3FE4;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

}

.faq-item--active .faq-item__answer {
    max-height: 1500px;
    margin-top: 5px;
    margin-bottom: 30px;
    max-width: 750px;
}

.faq-item__answer p {
    padding: 0;
    color: #4B5563;
    line-height: 30px;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Sora', sans-serif;
}

.faq-section__view-more svg {
    width: 16px;
    height: 16px;
}

/* Blog Section */
.blog-section {
    width: calc(100% - 190px);
    margin: auto;
    padding: 125px 0 65px;
    background: #ffffff;
}

.blog-section__container {
    margin: 0 auto;
}

.blog-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
    gap: 40px;
}

.blog-section__header-left {
    flex: 1;
}

.blog-section__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
}

.blog-section__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 70px;
    margin: 0;
    color: #1F2937;
    letter-spacing: -2px;
    max-width: 630px;
}

.blog-section__more-btn {
    background: transparent;
    color: #1F2937;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Sora', sans-serif;
    white-space: nowrap;
    margin-top: 20px;
    border: 1px solid transparent;
    background: linear-gradient(rgb(255, 255, 255), rgba(240, 242, 244, 1)) padding-box,
        linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;

}

.blog-section__more-btn svg {
    width: 16px;
    height: 16px;
}

.blog-section__more-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.blog-section__posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-post {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-post__image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.blog-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-post:hover .blog-post__image img {
    transform: scale(1.05);
}

.blog-post__meta {
    font-size: 13px;
    color: #6B7280;
    padding: 20px 24px 12px;
    font-family: 'Sora', sans-serif;
}

.blog-post__title {
    padding: 0 24px 15px;
    margin: 0;
    line-height: 1.4;
}

.blog-post__title-link {
    font-size: 25px;
    font-weight: 400;
    color: rgba(17, 17, 17, 1);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
    line-height: 35px;
}

.blog-post__title-link:hover {
    text-decoration: underline;
}

.blog-post__cursor {
    width: 28px;
    height: auto;
    position: absolute;
    top: -8px;
    right: -32px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.blog-post:first-child .blog-post__title-link:hover .blog-post__cursor {
    opacity: 1;
    transform: translate(4px, -4px);
}

.blog-post__categories {
    font-size: 13px;
    color: #9B9B9B;
    padding: 0 45px 50px;
    font-family: 'Sora', sans-serif;
    margin-top: auto;
}

/* Collaborators Section */
.collaborators-section {
    width: calc(100% - 190px);
    padding: 65px 0;
    margin: auto;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.collaborators-section__container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
    isolation: isolate;
    max-width: 1345px;
}

.collaborators-section__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: #9CA3AF;
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
}

.tinker-logo__img {
    width: 120px;
}

.collaborators-section__title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1F2937;
    letter-spacing: -2px;
    max-width: 630px;
}

.collaborators-section__logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    opacity: 0.8;
}

.collaborator-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9CA3AF;
    font-family: 'Sora', sans-serif;
    transition: opacity 0.3s;
}

.collaborator-logo--minimize {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.collaborator-logo:hover {
    opacity: 0.8;
}

.collaborator-logo__name {
    font-size: 16px;
    font-weight: 600;
    color: #9CA3AF;
    line-height: 1.2;
}

.collaborator-logo__name--large {
    font-size: 24px;
    font-weight: 700;
}

.collaborator-logo__name--white {
    color: #ffffff;
}

.collaborator-logo__subtitle {
    font-size: 11px;
    font-weight: 400;
    color: #9CA3AF;
    line-height: 1.3;
}

.collaborator-logo__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.collaborator-logo__text--stacked {
    align-items: flex-start;
}

.collaborator-logo__square {
    width: 48px;
    height: 48px;
    background: #9CA3AF;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    flex-shrink: 0;
}

.collaborator-logo__oval {
    width: 60px;
    height: 40px;
    border: 1.5px solid #9CA3AF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #9CA3AF;
    flex-shrink: 0;
}

.collaborator-logo--agrimax {
    gap: 0;
}

.collaborator-logo__box {
    display: flex;
    align-items: center;
    background: #D1D5DB;
    border-radius: 4px;
    padding: 8px 12px;
    gap: 10px;
}

.collaborator-logo__icon {
    width: 24px;
    height: 24px;
    background: #6B7280;
    border-radius: 2px;
    position: relative;
    flex-shrink: 0;
}

.collaborator-logo__icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 12px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 50% 80%, 100% 100%);
}

.collaborator-logo__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 6px;
    height: 8px;
    background: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 50% 80%, 100% 100%);
}

.collaborator-logo--vintage {
    gap: 0;
}

.collaborator-logo__circle {
    width: 80px;
    height: 80px;
    border: 1.5px solid #9CA3AF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.collaborator-logo__circle-top {
    position: absolute;
    top: 8px;
    font-size: 8px;
    font-weight: 600;
    color: #9CA3AF;
    letter-spacing: 0.5px;
}

.collaborator-logo__circle-center {
    font-size: 20px;
    font-weight: 700;
    color: #9CA3AF;
    font-style: italic;
    font-family: Georgia, serif;
}

.collaborator-logo__circle-bottom {
    position: absolute;
    bottom: 8px;
    font-size: 8px;
    font-weight: 600;
    color: #9CA3AF;
    letter-spacing: 0.5px;
}

/* Contact Section */
.contact-section {
    background: #000;
    border-top-right-radius: 25px;
    border-top-left-radius: 25px;
    padding: 0;
    padding-top: 85px;
    margin: 0 20px;
}

.contact-section__container {
    max-width: calc(100% - 190px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 110px;

}

.contact-section__info {
    background: transparent;
    color: white;
    padding: 0;

}

.contact-section__tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 300;
    color: #9CA3AF;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
}

.contact-section__title {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.2;
    color: #ffffff;
}

.contact-section__description {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 70px;
    font-family: 'Sora', sans-serif;
}

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

.contact-info__column {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.contact-info__item {
    font-size: 15px;
    line-height: 1.6;
    max-width: 190px;
    gap: 20px;
}

.contact-info__item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    font-family: 'Sora', sans-serif;
}

.contact-info__item p {
    color: rgba(255, 255, 255, 1);
    margin: 4px 0;
    font-family: 'Sora', sans-serif;
}

.contact-info__social {
    display: flex;
    gap: 45px;
    margin-top: 8px;
}

.contact-info__item p.mail {
    text-decoration: underline;
}


.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}



.contact-section__form {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form__title {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 32px;
    color: #1F2937;
}

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

.contact-form__input,
.contact-form__textarea {
    padding: 14px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 20px;
    font-size: 15px;
    font-family: 'Sora', sans-serif;
    transition: border-color 0.3s;
    color: #1F2937;
    font-weight: 300;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: #9CA3AF;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: #7B3FE4;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__submit {
    background: transparent;
    color: #1F2937;
    border: 1.5px solid #D1D5DB;
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-family: 'Sora', sans-serif;
    border: 1px solid transparent;
    background: linear-gradient(rgb(255, 255, 255), rgba(240, 242, 244, 1)) padding-box,
        linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;
}

.contact-form__submit svg {
    width: 16px;
    height: 16px;
}

.contact-form__submit:hover {
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}

.footer__banner {
    max-width: calc(100% - 190px);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 100px 0 60px;
}

.footer__banner-content {
    max-width: 1345px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.footer__banner-title {
    font-size: clamp(32px, 5vw, 80px);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    letter-spacing: clamp(-1px, -0.15vw, -2.4px);
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(113deg, rgba(69, 208, 189, 1) 0%, rgba(68, 182, 233, 1) 100%);
    background-clip: text;
    color: transparent;
    font-family: 'Sora', sans-serif;
    max-width: 800px;
}

.footer__banner-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid transparent;
    background:
        linear-gradient(#161616, #161616) padding-box,
        /* màu nền nút (đổi theo nền bạn) */
        linear-gradient(90deg, rgba(130, 88, 200, 1) 0%, rgba(44, 132, 200, 1) 100%) border-box;
    color: #fff;

    border-radius: 15px;
    padding: 15px 26px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__banner-cta svg {
    width: 16px;
    height: 16px;
}

.footer__banner-cta:hover {
    opacity: 0.7;
}



.footer__main {
    background: rgba(15, 16, 16, 1);

    position: relative;
    z-index: 1;
}

.footer__container {
    max-width: calc(100% - 190px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 40px;
    border-top: 1px solid rgba(203, 203, 203, 1);
    padding-top: 80px;
}

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

.footer__logo h2 {
    font-size: 27px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0;
    margin: 0;
    font-family: Earth Phototype;
}

.footer__social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer__social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Sora', sans-serif;
}

.footer__social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.footer__since {
    width: clamp(450px, 70vw, 750px);
    margin: 0;
    font-size: 150px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(44, 132, 200, 0.6);
    text-transform: lowercase;
    margin-top: 20px;
}



.footer__copyright {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--silver);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}

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

.footer__column-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    color: white;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.footer__links a {
    color: var(--white);
    text-decoration: none;
    font-size: clamp(14px, 1.2vw, 16px);
    transition: color 0.3s;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    line-height: 30px;
}

.footer__link--active {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

.footer__links a:hover {
    color: white;
    text-decoration: underline;
}

.footer__bottom {
    max-width: calc(100% - 190px);
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer__bottom p {
    margin-top: 20px;
    margin-bottom: 40px;
}



.footer__terms {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--silver);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
}

.footer__terms-link {
    color: var(--silver);
    text-decoration: underline;
    transition: color 0.3s;
}

.footer__terms-link:hover {
    color: #ffffff;
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 520px;
    background: url("images/mask-glow-1.png") bottom center/cover no-repeat;
    pointer-events: none;
    z-index: 100;
    opacity: 1;
}

/* nội dung footer nằm trên glow */
.footer>* {
    position: relative;
    z-index: 1;
}



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

    /* .hero__container,
    .promo-banner,
    .tinker-section,
    .features-section__container,
    .usp-section__container,
    .pioneers-section__container,
    .accomplishments-section__container,
    .testimonials-section__container,
    .faq-section__container,
    .blog-section__container,
    .collaborators-section {
        padding: 80px 60px;
    } */

    .collaborators-section__title {
        font-size: 42px;
    }

    .collaborators-section__logos {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .navbar__container {
        gap: 24px;
    }

    .navbar__menu {
        gap: 20px;
    }

    .navbar__link {
        font-size: 12px;
        padding: 6px 12px;
    }

    .navbar__get-in-touch {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__right {
        align-items: flex-start;
    }

    .promo-banner {
        padding: 0 60px 60px;
    }

    .promo-banner__container {
        padding: 50px 60px;
    }

    .promo-banner__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .promo-banner__title {
        font-size: 32px;
    }

    .promo-banner__logo {
        font-size: 100px;
        position: relative;
        bottom: auto;
        left: auto;
    }

    .promo-banner__right {
        align-items: flex-start;
    }

    .promo-banner__description {
        text-align: left;
    }

    .tinker-section {
        padding: 80px 60px 60px;
    }

    .tinker-section__container {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 60px;
    }

    .tinker-section__title {
        font-size: 48px;
        text-align: left;
    }

    .tinker-section__logos {
        gap: 40px;
    }

    .pioneers-section {
        min-height: auto;
        border-radius: 0;
    }

    .pioneers-section__container {
        padding: 80px 60px;
    }

    .pioneers-section__content {
        max-width: 100%;
    }

    .pioneers-section__title {
        font-size: 80px;
    }

    .pioneers-section__subtitle {
        font-size: 28px;
    }

    .faq-section__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faq-section__visual {
        min-height: 300px;
    }

    .faq-section__title {
        font-size: 42px;
    }

    .contact-section {
        padding: 80px 60px;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer__banner {
        padding: 60px;
    }

    .footer__banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer__banner-title {
        font-size: 36px;
    }

    .footer__divider {
        margin: 0 60px;
    }

    .footer__main {
        padding: 60px;
    }

    .footer__container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer__right {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }

    .footer__since {
        font-size: 100px;
    }

    .footer__bottom {
        padding: 0 60px;
    }

    .features-section__header {
        flex-direction: column;
        gap: 40px;
    }

    .features-section__header-right {
        align-items: flex-start;
        max-width: 100%;
    }

    .features-section__description {
        text-align: left;
    }

    .features-section__title {
        font-size: 42px;
    }

    .features-section__cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 350px;
    }

    .usp-section__title {
        font-size: 56px;
    }

    .usp-section__subtitle {
        font-size: 36px;
    }

    .usp-section__points {
        grid-template-columns: repeat(2, 1fr);
        padding: 60px 30px;
        gap: 30px;
    }

    .accomplishments-section__title {
        font-size: 42px;
    }

    .accomplishments-section__stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-item__value {
        font-size: 64px;
    }

    .accomplishments-section__pillars {
        grid-template-columns: 1fr;
    }

    .blog-section__header {
        flex-direction: column;
        gap: 30px;
    }

    .blog-section__header-left {
        width: 100%;
    }

    .blog-section__more-btn {
        align-self: flex-start;
        margin-top: 0;
    }

    .blog-section__title {
        font-size: 42px;
    }

    .blog-section__posts {
        grid-template-columns: 1fr;
    }

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

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

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

    .header {
        padding: 16px;
    }

    .hero__container,
    .services__container,
    .footer__banner,
    .footer__container,
    .footer__bottom,
    .team__container {
        max-width: 100%;
        width: 100%;
    }

    .navbar {
        position: relative;
    }

    .navbar__container {
        gap: 16px;
        flex-wrap: nowrap;
        position: relative;
        justify-content: space-between;
    }

    .navbar__left {
        gap: 12px;
    }

    .navbar__logo h1 {
        font-size: 20px;
    }

    .navbar__logo svg {
        width: 120px;
        height: 40px;
    }


    .navbar__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        gap: 12px;
        z-index: 1001;
    }

    .navbar__menu.active {
        display: flex;
    }

    .navbar__menu-item {
        width: 100%;
        justify-content: space-between;
    }

    .navbar__link {
        flex: 1;
        text-align: left;
    }

    .navbar__right {
        gap: 12px;
        margin-left: auto;
    }

    .navbar__get-in-touch {
        display: none;
    }

    .navbar__search svg {
        width: 18px;
        height: 18px;
    }

    /* Mobile menu toggle button */
    .navbar__mobile-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        margin-left: 8px;
    }

    .navbar__mobile-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: #333;
        margin: 5px 0;
        transition: 0.3s;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero__container {
        padding: 0 24px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero__left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__title {
        font-size: 32px;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .hero__description {
        font-size: 15px;
        margin: 20px auto;
        max-width: 100%;
    }

    .hero__cta {
        padding: 12px 28px;
        font-size: 15px;
        justify-content: center;
        margin: auto;
    }

    .promo-banner {
        padding: 40px 16px;
        margin-top: 0;
    }

    .promo-banner__container {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .promo-banner__left {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-banner__content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0px;
    }

    .promo-banner__title {
        font-size: 24px;
        line-height: 1.3;
        text-align: left;
    }

    .promo-banner__logo {
        font-size: 60px;
        position: static;
        margin: 10px 0;
    }

    .promo-banner__right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .promo-banner__description {
        font-size: 14px;
        text-align: center;
        margin-bottom: 20px;
    }

    .promo-banner__watch-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .tinker-section {
        padding: 40px 16px;
    }

    .tinker-section__container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .tinker-section__left {
        min-height: 150px;
        display: flex;
        justify-content: center;
        position: absolute;
    }

    .tinker-section__gradient {
        width: 100px;
        height: 100px;
    }

    .tinker-section__pattern {
        width: 120px;
    }

    .tinker-section__title {
        font-size: 28px;
        text-align: center;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .tinker-section__logos {
        gap: 20px;
        align-items: center;
        justify-content: center;
    }

    .tinker-logo {
        justify-content: center;
    }

    .tinker-section__right {
        padding: 0;
        width: 100%;
    }

    .services {
        padding: 60px 24px;
    }

    .services__header {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
        align-items: flex-start;

    }

    .services__tag {
        font-size: 12px;
    }

    .services__title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        max-width: 100% !important;
        height: auto !important;
        padding: 30px 24px !important;
    }

    .service-card__title {
        font-size: 24px !important;
    }

    .marquee {
        padding: 30px 0;
    }

    .marquee__content span {
        font-size: 40px;
        margin-right: 30px;
        letter-spacing: -1px;
    }

    .usp-section {
        padding: 60px 24px;
    }

    .usp-section__header {
        margin-bottom: 30px;
    }

    .usp-section__tag {
        font-size: 12px;
    }

    .usp-section__title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 0 !important;
        max-width: 100% !important;
    }

    .usp-section__points {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 24px;
    }

    .usp-point {
        max-width: 100%;
        gap: 10px;
    }

    .pioneers-section-wrapper {
        padding: 0;
    }

    .pioneers-section {
        padding: 40px 16px;
    }

    .pioneers-section__container {
        display: flex !important;
        flex-direction: column !important;
        padding: 60px 24px !important;
        background: #161616 !important;
        /* Ensure visibility */
        border-radius: 20px !important;
    }

    .pioneers-section__container:before {
        display: none;
        /* Hide the skew background on mobile for simplicity */
    }

    .pioneers-section__col--left {
        display: none;
        /* Hide the network image on mobile to save space */
    }

    .pioneers-section__stroke-text {
        font-size: 60px !important;
        margin-bottom: 20px !important;
        text-align: center;
        width: 100%;
        line-height: 1;
    }

    .pioneers-section__content {
        max-width: 100% !important;
        text-align: center;
    }

    .pioneers-section__tag {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .pioneers-section__title {
        font-size: 28px !important;
        line-height: 1.2;
        margin-bottom: 24px !important;
        letter-spacing: -1px;
    }

    .pioneers-section__text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .pioneers-section__cta {
        width: 100%;
        justify-content: center;
    }

    .features-section,
    .usp-section,
    .accomplishments-section {
        padding: 60px 24px;
        width: 100%;
    }

    .accomplishments-section__tag {
        font-size: 12px;
    }

    .accomplishments-section__title {
        font-size: 32px !important;
        line-height: 1.2 !important;
        margin-bottom: 40px !important;
        letter-spacing: -1px;
    }

    .accomplishments-section__stats {
        grid-template-columns: 1fr;
        gap: 24px !important;
        margin-bottom: 60px;
    }

    .stat-card {
        padding: 20px 0;
        width: 100% !important;
    }

    .stat-card--dark {
        padding: 30px !important;
    }

    .stat-card__value {
        font-size: 60px !important;
        margin-bottom: 20px !important;
    }

    .stat-card__label {
        font-size: 18px !important;
        line-height: 1.4 !important;
    }

    .stat-card__description {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

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

    .tech-item {
        gap: 20px !important;
    }

    .tech-item__title {
        font-size: 24px !important;
    }

    .tech-item__list li {
        font-size: 14px !important;
        line-height: 2 !important;
    }

    .testimonials-section {
        padding: 40px 16px;
    }

    .testimonials-section__container {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card__tag {
        margin-top: 0;
    }

    .testimonial-card__stats {
        margin-top: 30px;
    }

    .testimonial-card {
        padding: 40px 24px !important;
        min-height: auto !important;
    }

    .testimonial-card__quote-icon {
        font-size: 60px !important;
        margin-bottom: 10px !important;
    }

    .testimonial-card__quote {
        font-size: 15px !important;
        line-height: 1.6 !important;
        margin-bottom: 24px !important;
    }

    .testimonial-card--gradient {
        padding: 40px 24px !important;
    }

    .testimonial-card__stats-value {
        font-size: 60px !important;
        line-height: 1 !important;
        margin-bottom: 15px !important;
    }

    .faq-section {
        padding: 60px 24px;
        margin: 0 16px;
    }

    .faq-section__container {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
    }

    .faq-section__visual {
        position: absolute;
        left: 0;
        opacity: 0.2;
        pointer-events: none;
    }

    .faq-section__title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 30px !important;
        letter-spacing: -1px;
    }

    .faq-item__question {
        font-size: 20px !important;
        margin-bottom: 15px !important;
    }

    .faq-item__answer p {
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    .faq-section__view-more {
        padding: 12px 24px;
        font-size: 15px;
    }

    .blog-section {
        padding: 60px 16px;
        width: 100%;
    }

    .blog-section__header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .blog-section__title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        letter-spacing: -1px;
    }

    .blog-section__more-btn {
        width: 100%;
        justify-content: center;
    }

    .blog-section__posts {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-section__posts {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-post__image {
        height: 200px !important;
    }

    .blog-post__meta {
        font-size: 12px;
        padding: 16px 20px 10px;
    }

    .blog-post__title-link {
        font-size: 20px !important;
        line-height: 1.4 !important;
    }

    .blog-post__categories {
        font-size: 12px;
        padding: 0 20px 30px !important;
    }

    .collaborators-section {
        padding: 60px 16px;
        width: 100%;
    }

    .collaborators-section__tag {
        font-size: 12px;
    }

    .collaborators-section__title {
        font-size: 28px !important;
        line-height: 1.2 !important;
        margin-bottom: 40px !important;
        letter-spacing: -1px;
    }

    .collaborators-section__logos {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
        justify-items: center;
    }

    .collaborator-logo {
        justify-content: center;
    }

    .contact-section {
        padding: 60px 16px;
        margin: 0 16px;
    }

    .contact-section__container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 100% !important;
    }

    .contact-section__tag {
        font-size: 12px;
    }

    .contact-section__title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .contact-section__description {
        font-size: 14px !important;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 30px !important;
    }

    .contact-section__form {
        padding: 40px 30px;
    }

    .contact-form__title {
        font-size: 24px;
    }

    .footer {
        padding: 0;
        margin: 0 16px;
    }

    .footer__banner {
        padding: 60px 24px !important;
        width: 100% !important;
    }

    .footer__banner-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 30px;
    }

    .footer__banner-title {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .footer__divider {
        margin: 0 24px;
    }

    .footer__main {
        padding: 40px 24px !important;
        width: 100% !important;
    }

    .footer__container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-top: 40px !important;
        width: 100% !important;
    }

    .footer__right {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer__since {
        font-size: 60px !important;
        width: 100% !important;
        letter-spacing: -2px;
    }

    .footer__bottom {
        padding: 0 24px;
        text-align: center !important;
        margin-top: 20px;
        flex-direction: column !important;
        width: 100% !important;
    }

    .testimonials-section__container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        padding: 40px 30px;
        min-height: 400px;
    }

    .testimonial-card__quote-icon {
        font-size: 80px;
    }

    .testimonial-card__quote {
        font-size: 16px;
    }

    .testimonial-card__title {
        font-size: 28px;
    }

    .testimonial-card__stats-value {
        font-size: 56px;
    }

    .usp-section__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .usp-section__header {
        margin-bottom: 40px;
    }

    .usp-section__tag {
        font-size: 12px;
    }

    .usp-section__subtitle {
        font-size: 24px;
        letter-spacing: -1px;
    }

    .usp-section__points {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 30px;
    }

    .usp-point__icon {
        width: 56px;
        height: 56px;
        margin-bottom: 0;
    }

    .usp-point__icon img {
        width: 28px;
        height: 28px;
    }

    .usp-point__title {
        font-size: 20px;
    }

    .usp-point__description {
        font-size: 14px;
    }
}

/* Team Section */
.team {
    padding: 50px 0 140px;
    background: #ffffff;
    overflow: hidden;
}

.team__container {
    width: calc(100% - 190px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.team__header {
    max-width: 480px;
    grid-column: span 2;
}

.team__tag {
    display: block;
    font-size: 14px;
    color: #898989;
    margin-bottom: 24px;
    text-transform: lowercase;
}

.team__title {
    font-size: 45px;
    font-weight: 400;
    line-height: 1.1;
    color: #111111;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.team__stats {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.team__stats-value {
    font-size: 110px;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px #576FC9;
    font-family: 'Sora', sans-serif;
    margin-bottom: 10px;
}

.team__stats-label {
    font-size: 16px;
    font-weight: 600;
    color: #111111;
}

.team__grid {
    display: contents;
    /* Header and cards participate in the same grid */
}

/* Team Card Styles */
.team-card {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    gap: 0;
    transition: transform 0.3s ease;
    border: 1px solid #E0E0E0;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card__image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 0.85;
    border-radius: 12px;
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    overflow: hidden;
}

.team-card__social-pill {
    position: absolute;
    top: 50%;
    left: 35px;
    transform: translateY(-50%) translateX(-20px);
    background: #111111;
    border-radius: 30px;
    padding: 15px 8px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 10;
}

.team-card:hover .team-card__social-pill {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: opacity 0.2s;
}

.social-icon img {
    width: 16px;
    height: 16px;
}

.team-card__share {
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 70px;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
    z-index: 5;
}

.team-card__bg-text {
    position: absolute;
    top: 0;
    right: 26px;
    font-size: 65px;
    font-weight: bold;
    color: #ffffff;
    opacity: 0.8;
    pointer-events: none;
    white-space: nowrap;
    font-family: 'Sora', sans-serif;
    letter-spacing: -2px;
    transform: translateY(0) rotate(-90deg);
    transform-origin: right center;
}

.team-card__info {
    text-align: left;
    padding: 30px;
}

.team-card__name {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.team-card__title {
    font-size: 14px;
    color: #898989;
    font-weight: 500;
}

/* Specific Staggered Grid Positions */
.team-card--v1 {
    grid-column: 3;
    grid-row: 1;
    margin-top: 50px;
}

.team-card--v2 {
    grid-column: 4;
    grid-row: 1;
    margin-top: 100px;
}

.team-card--v3 {
    grid-column: 2;
    grid-row: 2;
}

.team-card--v4 {
    grid-column: 3;
    grid-row: 2;
    margin-top: -50px;
}

.team-card--v5 {
    grid-column: 4;
    grid-row: 2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .team__container {
        grid-template-columns: 1fr 1fr;
        width: calc(100% - 100px);
    }

    .team-card--v1,
    .team-card--v2,
    .team-card--v3,
    .team-card--v4,
    .team-card--v5 {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
    }

    .team__header {
        grid-column: span 2;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 40px 0 60px;
    }

    .team__container {
        grid-template-columns: 1fr;
        width: calc(100% - 40px);
        gap: 20px;
    }

    .team__header {
        grid-column: span 1;
    }

    .team__title {
        font-size: 40px;
    }

    .team__stats-value {
        font-size: 70px;
    }
}