/* =========================================
   GO PAGE
========================================= */
.go-page-shell {
    min-height: 100vh;
    background: #f3f3f3;
    overflow-x: hidden;
}

.go-header {
    background: #ffffff;
    position: relative;
    z-index: 30;
}

.go-page {
    background: #f3f3f3;
    overflow: hidden;
}

.go-page .container,
.go-header .container {
    width: min(calc(100% - 48px), 1180px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.go-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* =========================================
   HERO
========================================= */
.go-hero {
    position: relative;
    background: #ffffff;
    padding: 38px 0 46px;
    overflow: hidden;
}

.go-hero__container {
    max-width: 820px;
    display: grid;
    grid-template-columns: 1fr 240px;
    align-items: center;
    gap: 52px;
}

.go-hero__text h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: #000;
}

.go-hero__text h1 span {
    display: block;
    font-size: clamp(66px, 8vw, 112px);
    line-height: 0.85;
    letter-spacing: -0.075em;
}

.go-hero__text p {
    margin: 14px 0 0;
    font-size: clamp(13px, 1.2vw, 16px);
    line-height: 1.2;
    font-weight: 700;
    color: #111;
}

.go-hero__logo {
    width: 235px;
}

.go-hero__logo img {
    width: 100%;
    height: auto;
}

.go-decor--hero-left {
    left: -54px;
    top: 18px;
    width: 170px;
}

.go-decor--hero-right {
    right: -44px;
    top: 0;
    width: 175px;
}

/* =========================================
   ABOUT
========================================= */
.go-section-strip {
    padding: 25px 0;
}

.go-section-strip--purple {
    background: #8a2a8e;
}

.go-strip-container {
    max-width: 820px;
}

.go-section-strip h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.go-about-section {
    background: #f3f3f3;
}

.go-about-container {
    max-width: 820px;
    padding: 0;
}

.go-about-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    background: #f3f3f3;
}

.go-about-image {
    min-height: auto;
    min-width: auto;
}

.go-about-image img {
    width: 100%;
    height: 100%;
    min-height: auto;
    object-fit: cover;
}

.go-about-text {
    padding: 32px 34px;
}

.go-about-text p {
    margin: 0;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.27;
    font-weight: 500;
    color: #111;
}

.go-about-text p+p {
    margin-top: 14px;
}

.go-mission-line {
    background: #42e0a8;
    padding: 20px 0;
}

.go-mission-line .container {
    max-width: 820px;
}

.go-mission-line p {
    margin: 0;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.32;
    font-weight: 700;
    color: #111;
}

/* =========================================
   VALUES
========================================= */
.go-values-section {
    position: relative;
    background: #f3f3f3;
    padding: 74px 0 56px;
    overflow: hidden;
}

.go-values-container {
    max-width: 940px;
}

.go-section-title {
    margin: 0 0 34px;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #000;
    text-align: center;
}

.go-values-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    align-items: stretch;
}

.go-value-card {
    min-height: 190px;
    border: 1px solid rgba(45, 45, 45, 0.45);
    background: #f7f7f7;
    padding: 20px 12px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.35s ease;
}

.go-value-card:nth-child(1) {
    grid-column: 2 / span 2;
}

.go-value-card:nth-child(2) {
    grid-column: 4 / span 2;
}

.go-value-card:nth-child(3) {
    grid-column: 6 / span 2;
}

.go-value-card:nth-child(4) {
    grid-column: 1 / span 2;
}

.go-value-card:nth-child(5) {
    grid-column: 3 / span 2;
}

.go-value-card:nth-child(6) {
    grid-column: 5 / span 2;
}

.go-value-card:nth-child(7) {
    grid-column: 7 / span 9;
}

.go-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.1);
    border-color: rgba(138, 42, 142, 0.55);
}

.go-value-card__icon {
    width: 76px;
    height: 76px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #8a2a8e;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.go-value-card:hover .go-value-card__icon {
    transform: scale(1.08) rotate(3deg);
}

.go-value-card__icon i {
    font-size: 34px;
}

.go-value-card h3 {
    margin: 0 0 8px;
    font-size: clamp(14px, 1.2vw, 17px);
    line-height: 1.12;
    font-weight: 800;
    color: #111;
}

.go-value-card p {
    margin: 0;
    font-size: 11px;
    line-height: 1.22;
    font-weight: 500;
    color: #111;
}

.go-decor--values-left {
    left: -24px;
    top: 220px;
    width: 120px;
}

.go-decor--values-right {
    right: -20px;
    top: 220px;
    width: 120px;
}

/* =========================================
   GROWTH
========================================= */
.go-growth-section {
    position: relative;
    background: #f3f3f3;
    padding: 34px 0 76px;
    overflow: hidden;
}

.go-growth-container {
    max-width: 760px;
}

.go-growth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 10px;
}

.go-growth-card {
    position: relative;
    min-height: 140px;
    padding: 22px 24px;
    overflow: hidden;
    transition: 0.35s ease;
}

.go-growth-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
    z-index: 3;
}

.go-growth-card--purple {
    background: #8a2a8e;
    color: #fff;
}

.go-growth-card--green {
    background: #42e0a8;
    color: #111;
}

.go-growth-card h3 {
    margin: 0 0 14px;
    font-size: clamp(15px, 1.35vw, 20px);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.go-growth-card p {
    margin: 0;
    font-size: clamp(11px, 1vw, 13px);
    line-height: 1.3;
    font-weight: 500;
}

.go-growth-card__notch {
    position: absolute;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f3f3f3;
    transform: translateY(-50%);
}

.go-growth-card__notch--left {
    left: -7px;
}

.go-growth-card__notch--right {
    right: -7px;
}

.go-decor--growth-left {
    left: -48px;
    top: 180px;
    width: 160px;
}

.go-decor--growth-right {
    right: -54px;
    top: 200px;
    width: 170px;
}

/* =========================================
   PROJECTS
========================================= */
.go-projects-section {
    background: #42e0a8;
    padding: 64px 0 76px;
}

.go-projects-container {
    max-width: 880px;
}

.go-projects-section .go-section-title {
    text-align: left;
    margin-bottom: 20px;
}

.go-projects-lead {
    max-width: 760px;
    margin: 0 0 34px;
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.32;
    font-weight: 600;
    color: #111;
}

.go-project-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
}

.go-project-viewport {
    width: 100%;
    overflow: hidden;
}

.go-project-track {
    display: flex;
    transition: transform 0.55s ease;
    will-change: transform;
}

.go-project-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: 56% 44%;
    max-width: 760px;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
    background: #fff;
}

.go-project-slide__image {
    min-height: 320px;
    background: #ddd;
}

.go-project-slide__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.go-project-slide__content {
    padding: 36px 28px;
    background: #fff;
}

.go-project-slide__content h3 {
    margin: 0 0 16px;
    font-size: clamp(24px, 2.4vw, 36px);
    line-height: 1;
    font-weight: 800;
    color: #111;
}

.go-project-slide__content p {
    margin: 0;
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.go-project-arrow {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #42e0a8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.go-project-arrow:hover {
    transform: scale(1.08);
    background: #8a2a8e;
    color: #fff;
}

/* =========================================
   TRANSPARENCY
========================================= */
.go-transparency-section {
    background: #dff1ea;
    padding: 58px 0 54px;
}

.go-transparency-container {
    max-width: 760px;
    display: grid;
    grid-template-columns: 1fr 210px;
    align-items: center;
    gap: 56px;
}

.go-transparency-text h2 {
    margin: 0 0 24px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #000;
}

.go-transparency-text p {
    margin: 0;
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.32;
    font-weight: 500;
    color: #111;
}

.go-transparency-actions {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.go-transparency-actions a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 34px;
    padding: 10px 18px;
    background: #ffffff;
    color: #111;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    transition: 0.3s ease;
}

.go-transparency-actions a:hover {
    transform: translateY(-3px);
    background: #8a2a8e;
    color: #fff;
}

/* =========================================
   PARTNERSHIP
========================================= */
.go-partnership-section {
    position: relative;
    background: #f3f3f3;
    padding: 70px 0 72px;
    overflow: hidden;
}

.go-partnership-container {
    max-width: 780px;
}

.go-partnership-container h2 {
    margin: 0 0 34px;
    font-size: clamp(34px, 4.6vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #000;
}

.go-partnership-container h2 span {
    color: #8a2a8e;
}

.go-partnership-list {
    display: flex;
    flex-direction: column;
}

.go-partnership-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 2px solid rgba(66, 224, 168, 0.65);
}

.go-partnership-item span {
    font-size: 22px;
    line-height: 1;
}

.go-partnership-item p {
    margin: 0;
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 1.28;
    font-weight: 500;
    color: #111;
}

.go-partnership-item strong {
    font-weight: 800;
}

.go-decor--partnership-left {
    left: -80px;
    bottom: 60px;
    width: 230px;
}

.go-decor--partnership-right {
    right: -90px;
    top: 60px;
    width: 230px;
}

/* =========================================
   CONTACT CTA
========================================= */
.go-contact-section {
    background: #42e0a8;
    padding: 54px 0;
}

.go-contact-container {
    max-width: 780px;
    display: grid;
    grid-template-columns: 1fr 290px;
    align-items: center;
    gap: 48px;
}

.go-contact-info h2 {
    margin: 0 0 24px;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.055em;
    color: #000;
}

.go-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1;
    font-weight: 800;
    color: #111;
}

.go-contact-mail span {
    width: 32px;
    height: 32px;
    border: 1.6px solid #111;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.go-contact-mail i {
    font-size: 14px;
}

.go-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 18px 24px;
    background: #8a2a8e;
    color: #fff;
    text-align: center;
    font-size: clamp(18px, 1.7vw, 24px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    border-radius: 3px;
    transition: 0.3s ease;
}

.go-contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(138, 42, 142, 0.28);
}

.go-contact-btn-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    font-size: clamp(12px, 1.1vw, 14px);
    background: #8a2a8e;
    color: #fff;
    border-radius: 0 10px 0 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition:
        transform 0.7s ease,
        border-radius 0.7s ease;
}

.go-contact-btn-project:hover {
    border-radius: 10px 0 10px 0;
    transform: translateX(10px);
}

/* =========================================
   REVEAL
========================================= */
.reveal,
.reveal-support-left,
.reveal-support-right,
.reveal-support-up {
    opacity: 0;
    transform: translateY(28px);
}

.reveal.in-view,
.reveal-support-left.in-view,
.reveal-support-right.in-view,
.reveal-support-up.in-view {
    animation: goRevealUp 0.8s ease forwards;
}

.delay-1.in-view {
    animation-delay: 0.1s;
}

.delay-2.in-view {
    animation-delay: 0.18s;
}

.delay-3.in-view {
    animation-delay: 0.26s;
}

.delay-4.in-view {
    animation-delay: 0.34s;
}

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

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1100px) {
    .go-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .go-value-card,
    .go-value-card:nth-child(n) {
        grid-column: auto;
    }

    .go-decor--growth-left,
    .go-decor--growth-right,
    .go-decor--values-left,
    .go-decor--values-right {
        opacity: 0.6;
    }
}

@media (max-width: 900px) {
    .go-hero__container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .go-hero__logo {
        margin: 0 auto;
        width: 220px;
    }

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

    .go-about-text {
        padding: 28px 0;
    }

    .go-growth-grid {
        grid-template-columns: 1fr;
    }

    .go-growth-card__notch {
        display: none;
    }

    .go-project-slider {
        padding: 0 42px;
    }

    .go-project-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }

    .go-project-arrow--left {
        left: 0;
    }

    .go-project-arrow--right {
        right: 0;
    }

    .go-project-arrow:hover {
        transform: translateY(-50%) scale(1.08);
    }

    .go-transparency-container,
    .go-contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .go-contact-btn {
        width: 100%;
        max-width: 340px;
    }
}

@media (max-width: 640px) {

    .go-page .container,
    .go-header .container {
        width: min(calc(100% - 28px), 1180px);
    }

    .go-hero {
        padding: 32px 0 38px;
    }

    .go-hero__text h1 {
        font-size: 40px;
    }

    .go-hero__text h1 span {
        font-size: 70px;
    }

    .go-hero__logo {
        width: 185px;
    }

    .go-decor--hero-left,
    .go-decor--hero-right {
        width: 92px;
        opacity: 0.55;
    }

    .go-section-strip {
        padding: 20px 0;
    }

    .go-values-section,
    .go-growth-section,
    .go-projects-section,
    .go-transparency-section,
    .go-partnership-section,
    .go-contact-section {
        padding: 42px 0;
    }

    .go-values-grid {
        grid-template-columns: 1fr;
    }

    .go-value-card {
        min-height: auto;
    }

    .go-growth-card {
        min-height: auto;
        padding: 20px;
    }

    .go-project-slide {
        grid-template-columns: 1fr;
    }

    .go-project-slide__image {
        min-height: 220px;
    }

    .go-project-slide__content {
        padding: 24px 20px;
    }

    .go-project-slider {
        padding: 0 34px;
    }

    .go-decor--growth-left,
    .go-decor--growth-right,
    .go-decor--values-left,
    .go-decor--values-right,
    .go-decor--partnership-left,
    .go-decor--partnership-right {
        display: none;
    }

    .go-partnership-item {
        grid-template-columns: 28px 1fr;
    }

    .go-contact-mail {
        gap: 12px;
        font-size: 16px;
    }

    .go-contact-mail span {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 420px) {
    .go-hero__text h1 {
        font-size: 34px;
    }

    .go-hero__text h1 span {
        font-size: 58px;
    }

    .go-section-title,
    .go-transparency-text h2,
    .go-contact-info h2 {
        font-size: 36px;
    }

    .go-section-strip h2 {
        font-size: 34px;
    }

    .go-contact-btn {
        font-size: 18px;
        min-height: 82px;
    }
}