/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* CSS Variables */
:root {
    --primary-main: #2e929c;
    --secondary-main: #9cff4f;
    --text-title: #202431;
    --text-brand: #2e929c;
    --text-invert: white;
    --text-help: #7f91b1;
    --gray-50: #f9fafb;
    --gray-300: #d1d5db;
    --white-solid: white;
    --white-10: rgba(255, 255, 255, 0.1);
    --white-secondary: rgba(255, 255, 255, 0.2);
    --cyan-40: #b3ebef;
    --cyan-50: #a0e1e6;
    --cyan-70: #8fd6d3;
    --cyan-80: #5bc4c3;
    --grey-93: #e8f3f3;
    --chartreuse-green-65: #9cff4f;
    --green-300-m: #9cff4f;
    --green-100: #e3ffc7;
    --primary-contrast: white;
    --secondary-contrast: #2d3445;
}

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

body {
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    overflow-x: hidden;
}

.container {
    margin: 0 auto;
    max-width: 100%;
    overflow-x: hidden;
}

/* Hero Section Styles */
.hero-section {
    min-height: 120vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    background-image: url("/image/BG_Session_1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    position: relative;
    padding-bottom: 100px;
    overflow-x: hidden;
}

.header {
    padding: 0 64px;
    background-color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-overlay {
    padding: 7px;
    width: 54px;
    height: 54px;
    background: rgba(212, 209, 209, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(2px);
}

.logo-text {
    color: black;
    font-size: 28px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 32px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-button {
    color: black;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-button:hover {
    color: var(--chartreuse-green-65);
}

.cta-button {
    min-width: 72px;
    padding: 12px 16px;
    background: var(--primary-main);
    border-radius: 6px;
    border-bottom: 2.5px solid var(--green-300-m);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 550;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 146, 156, 0.3);
}

.main-content {
    flex: 1;
    padding: 200px 192px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    width: 100%;
}

.hero-text {
    width: 100%;
    max-width: 635px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.hero-title {
    color: white;
    font-size: 72px;
    font-weight: 700;
    line-height: 66.24px;
    margin-bottom: 24px;
}

.hero-description {
    width: 100%;
    max-width: 635px;
    color: var(--grey-93);
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.highlight {
    color: var(--chartreuse-green-65);
}

.hero-buttons {
    padding-top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primary-button {
    min-width: 72px;
    padding: 16px 20px;
    background: var(--secondary-main);
    border-radius: 8px;
    border-bottom: 4px solid var(--green-100);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--secondary-contrast);
    font-size: 16px;
    font-weight: 550;
    transition: all 0.3s ease;
}

.secondary-button {
    min-width: 72px;
    padding: 16px 20px;
    background: var(--primary-main);
    border-radius: 8px;
    border-bottom: 4px solid var(--green-300-m);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-contrast);
    font-size: 16px;
    font-weight: 550;
    transition: all 0.3s ease;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 255, 79, 0.3);
}

/* Dropdown Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-button {
    border: none;
    border-bottom: 4px solid var(--green-100);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: var(--secondary-contrast);
    font-size: 16px;
    font-weight: 550;
    transition: all 0.3s ease;
}

.dropdown-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 255, 79, 0.3);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 4px;
}

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

.dropdown-option {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 24px;
    color: var(--secondary-contrast);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(53, 52, 52, 0.2);
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background: rgba(156, 255, 79, 0.1);
    color: var(--primary-main);
}

.dropdown-option svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.hero-image {
    width: 100%;
    max-width: 784px;
    height: 500px;
    position: relative;
}

.placeholder-image {
    width: 100%;
    max-width: 1022px;
    height: 787px;
    position: absolute;
    left: 50%;
    top: -143px;
    transform: translateX(-50%);
    background-image: url("/image/cube_sestion_1.png");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.stat-card {
    width: 100%;
    max-width: 288px;
    min-width: 200px;
    padding: 25px;
    position: absolute;
    background: rgba(110, 202, 201, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(143, 214, 211, 0.3);
    backdrop-filter: blur(7.5px);
    display: flex;
    flex-direction: column;
}

.stat-card-1 {
    left: 0px;
    top: 6px;
}

.stat-card-2 {
    left: 495.19px;
    top: 225px;
}

.stat-card-3 {
    left: 35.59px;
    top: 319px;
}

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

.stat-icon {
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 48px;
    margin-right: 16px;
}

.stat-number {
    color: white;
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 36px;
    text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.7);
}

.stat-label {
    color: var(--cyan-40);
    font-size: 14px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 20px;
}

/* Partners Section Styles */
.partners-section {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background-image: url("/image/Blur-BG.png");
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -220px;
    padding-top: 320px;
    z-index: 2;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.partners-subtitle {
    color: var(--text-title);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-title {
    color: var(--text-title);
    font-size: 64px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.partners-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-row {
    display: flex;
    gap: 24px;
    margin: 12px 0;
}

.partner-card {
    flex-shrink: 0;
    width: auto;
    min-width: 180px;
    height: 72px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-card:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    background: white;
}

.partner-logo {
    max-height: 40px;
    max-width: 150px;
    margin: 0px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

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

@keyframes scroll {
    from {
        transform: translateX(0);
    }

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

@keyframes scroll-reverse {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.scrolling .partners-row {
    animation: scroll 45s ease-in-out infinite;
    width: max-content;
    display: flex;
    gap: 24px;
    will-change: transform;
}

.scrolling .partners-row:nth-child(even) {
    animation-name: scroll-reverse;
    animation-duration: 50s;
    animation-timing-function: ease-in-out;
}

/* Why Section Styles */
.why-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.background-blur {
    position: absolute;
    width: 302px;
    height: 311px;
    left: 363px;
    top: 328px;
    background: var(--primary-main);
    border-radius: 50%;
    filter: blur(300px);
    opacity: 0.3;
    z-index: 0;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(224, 224, 224, 0.02),
        0 25px 50px -12px rgba(46, 146, 156, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.text-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-subtitle {
    color: var(--text-brand);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    color: var(--text-title);
    font-size: 64px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.section-description {
    color: var(--text-title);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.metrics-grid {
    display: flex;
    gap: 16px;
}

.metric-card {
    flex: 1;
    padding: 32px 12px 16px;
    background: var(--white-secondary);
    border-radius: 12px;
    backdrop-filter: blur(4px);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
}

.metric-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -39px;
    width: 172px;
    height: 107px;
    filter: blur(44px);
    z-index: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

/* Different colors for each card's background glow */
.metric-card:nth-of-type(1)::before {
    background: linear-gradient(135deg,
            var(--secondary-main) 0%,
            rgba(156, 255, 79, 0.3) 25%);
}

.metric-card:nth-of-type(2)::before {
    background: linear-gradient(135deg, #8dbaf8 0%, rgba(64, 155, 255, 0.4) 25%);
}

.metric-card:nth-of-type(3)::before {
    background: linear-gradient(135deg, #f87171 0%, rgba(239, 68, 68, 0.4) 25%);
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Different background for each metric icon */
.metric-card:nth-of-type(1) .metric-icon {
    background: linear-gradient(135deg, #c3ff8f 0%, #9cff4f 100%);
}

.metric-card:nth-of-type(2) .metric-icon {
    background: linear-gradient(135deg, #8dbaf8 0%, #409bff 100%);
}

.metric-card:nth-of-type(3) .metric-icon {
    background: linear-gradient(135deg, #fca5a5 0%, #f87171 100%);
}

.metric-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.metric-number {
    color: var(--text-brand);
    font-size: 64px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.metric-label {
    color: var(--text-title);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
}

.metrics-disclaimer {
    color: var(--text-help);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        gap: 32px;
    }

    .hero-text {
        width: 100%;
        max-width: 635px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 44px;
    }

    .main-content {
        padding: 100px 64px 0;
    }

    .partners-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 20px;
    }

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

    .nav-buttons {
        gap: 24px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 32px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .dropdown-container {
        width: 100%;
    }

    .dropdown-button {
        margin-top: 50px;
        width: 100%;
    }

    .dropdown-menu {
        width: 100%;
        left: 0;
        right: 0;
    }

    .main-content {
        padding: 50px 20px 0;
    }

    .hero-image {
        height: 300px;
    }

    .placeholder-image {
        height: 400px;
        top: -50px;
    }

    .stat-card {
        max-width: 200px;
        padding: 15px;
        font-size: 12px;
    }

    .stat-card-1 {
        left: 10px;
        top: 20px;
    }

    .stat-card-2 {
        right: 10px;
        top: 120px;
    }

    .stat-card-3 {
        left: 10px;
        bottom: 20px;
    }

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

    .partners-subtitle {
        font-size: 16px;
    }

    .partners-row {
        gap: 16px;
    }

    .partner-card {
        min-width: 150px;
        height: 60px;
    }

    .scrolling .partners-row {
        animation-duration: 135s;
        animation-timing-function: ease-in-out;
    }

    .scrolling .partners-row:nth-child(even) {
        animation-duration: 105s;
        animation-timing-function: ease-in-out;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .header {
        padding: 0 16px;
    }

    .main-content {
        padding: 30px 16px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 28px;
    }

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

    .hero-image {
        height: 250px;
    }

    .placeholder-image {
        height: 300px;
        top: -25px;
    }

    .stat-card {
        max-width: 160px;
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .partners-section {
        padding-top: 200px;
        margin-top: -150px;
    }

    .partners-title {
        font-size: 28px;
    }

    .join-future-section {
        padding: 60px 16px;
    }

    .footer-header {
        padding: 20px 16px;
        flex-direction: column;
        gap: 16px;
    }

    .footer-content {
        padding: 40px 16px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-divider {
        display: none;
    }
}

/* Join Future Section Styles */
.join-future-section {
    width: 100%;
    min-height: 1050px;
    max-width: 1920px;
    margin: 0 auto;
    padding: 100px 64px;
    position: relative;
    background-image: url('/image/BG_section_4.png');
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Background Grid Pattern */
.background-grid {
    position: absolute;
    width: 100%;
    max-width: 1194px;
    height: 592px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    overflow: hidden;
    z-index: 0;
}

.grid-pattern {
    position: relative;
    width: 100%;
    height: 100%;
}

.grid-line {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-main) 0%, rgba(46, 146, 156, 0.3) 100%);
    border-radius: 2px;
}

.grid-line-1 {
    width: 998px;
    height: 2px;
    left: 98px;
    top: 33px;
    transform: rotate(15deg);
}

.grid-line-2 {
    width: 499px;
    height: 2px;
    left: 182px;
    top: 81px;
    transform: rotate(30deg);
}

.grid-line-3 {
    width: 499px;
    height: 2px;
    left: 265px;
    top: 129px;
    transform: rotate(45deg);
}

.grid-line-4 {
    width: 400px;
    height: 2px;
    left: 350px;
    top: 200px;
    transform: rotate(60deg);
}

.grid-line-5 {
    width: 300px;
    height: 2px;
    left: 450px;
    top: 280px;
    transform: rotate(75deg);
}

.join-future-section .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    max-width: 1512px;
    margin: 0 auto;
}

.join-future-section .header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
    max-width: 1104px;
}

.join-future-section .section-title {
    color: var(--text-title);
    font-size: 64px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 700;
    line-height: 58.88px;
}

.join-future-section .section-description {
    color: var(--text-title);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 28.8px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    width: 100%;
}

.step-card {
    flex: 1;
    padding: 48px 32px 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    transform: translateY(-8px);
    background: var(--white-secondary);
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 3px solid var(--secondary-main);
}

.step-card:hover .step-label,
.step-card:hover .step-title {
    background: var(--gradient, linear-gradient(90deg, #2E929C 0%, #9CFF4F 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.step-icon {
    width: 100px;
    margin: 20px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.icon-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
}

/* Step 1 - Web3 Influence Icon */
.icon-influence {
    background: linear-gradient(135deg, #A0D4FF 0%, #0593FC 100%);
    border-radius: 20px;
}

.icon-influence .icon-circle {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #A0D4FF 0%, #0593FC 100%);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.icon-influence .icon-shape {
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, #EAF6FF 0%, #B3DAFE 100%);
    border-radius: 25px 25px 10px 10px;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

/* Step 2 - PR Marketing Icon */
.icon-reporting {
    background: linear-gradient(135deg, #DEECF1 0%, #D9B1EE 100%);
    border-radius: 20px;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.icon-reporting .icon-bar {
    width: 100%;
    height: 8px;
    background: linear-gradient(135deg, #DEECF1 0%, #D9B1EE 100%);
    border-radius: 4px;
}

.icon-reporting .icon-bar:nth-child(1) {
    width: 80%;
}

.icon-reporting .icon-bar:nth-child(2) {
    width: 60%;
}

.icon-reporting .icon-bar:nth-child(3) {
    width: 90%;
}

/* Step 3 - Growth Strategies Icon */
.icon-growth {
    background: linear-gradient(135deg, #A2E62E 0%, #017B4E 100%);
    border-radius: 20px;
}

.icon-growth .icon-arrow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #A2E62E 0%, #017B4E 100%);
    border-radius: 8px;
    position: absolute;
    left: 30%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.icon-growth .icon-target {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #A2E62E 0%, #017B4E 100%);
    border-radius: 50%;
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translate(50%, -50%);
    border: 3px solid rgba(255, 255, 255, 0.3);
}


.step-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 30px;
    height: 100%;
}

.step-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-label {
    color: var(--primary-main);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
}

.step-title {
    color: var(--text-title);
    font-size: 24px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 700;
    margin: 0;
}

.step-description {
    color: var(--text-title);
    font-size: 18px;
    font-weight: 400;
    line-height: 28.8px;
    margin: 0;
}

.services-section {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(172deg, #152f37 0%, #4db9c3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1194px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}

.services-header {
    max-width: 786px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.services-title {
    color: white;
    font-size: 64px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    line-height: 58.88px;
    margin: 0;
}

.services-description {
    color: white;
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 28.8px;
    margin: 0;
}

.services-grid {
    width: 100%;
    max-width: 1192px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: start;
}

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

.column-title {
    color: white;
    font-size: 32px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.service-items {
    display: flex;
    flex-direction: column;
    flex-wrap: center;
    gap: 8px;
}

.service-item {
    padding: 16px;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(102, 102, 102, 0.12) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(156, 255, 79, 0.1);
}

.service-item.highlight {
    background: var(--secondary-main);
}

.service-item.highlight .service-title {
    color: var(--text-title);
}

.service-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon img {
    width: 18px;
    height: 18px;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 65px;
}

.service-title {
    color: white;
    font-size: 16px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    margin: 0;
}

.service-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 500;
    line-height: 25.6px;
    margin: 0;
}

.service-item.highlight .service-subtitle {
    color: var(--text-title);
}

.services-divider {
    width: 1px;
    height: 454px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}

.services-bg-blur {
    position: absolute;
    width: 1787.9px;
    height: 295.76px;
    right: -500px;
    top: 50%;
    transform: translateY(-50%) rotate(1deg);
    background: var(--secondary-main);
    border-radius: 50%;
    filter: blur(400px);
    opacity: 0.67;
    z-index: 0;
}

.services-content {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-divider {
        display: none;
    }

    .services-title {
        font-size: 48px;
        line-height: 44px;
    }
}

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

    .services-container {
        gap: 40px;
        padding: 0 1rem;
    }

    .services-title {
        font-size: 36px;
        line-height: 32px;
    }

    .services-description {
        font-size: 16px;
        line-height: 24px;
    }

    .column-title {
        font-size: 24px;
    }

    .service-item {
        padding: 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }
}

/* Responsive Styles for Join Future Section */
@media (max-width: 1200px) {
    .join-future-section {
        padding: 80px 32px;
    }

    .steps-grid {
        flex-direction: column;
        height: 300px;
        gap: 24px;
    }

    .join-future-section .section-title {
        font-size: 48px;
        line-height: 44px;
    }
}

@media (max-width: 768px) {
    .join-future-section {
        padding: 60px 20px;
    }

    .join-future-section .content-wrapper {
        gap: 60px;
    }

    .join-future-section .section-title {
        font-size: 36px;
        line-height: 32px;
    }

    .join-future-section .section-description {
        font-size: 16px;
        line-height: 24px;
    }

    .step-card {
        padding: 32px 20px 24px;
    }


    .step-content {
        gap: 40px;
    }
}

/* Services Section */
.offer-services-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
    min-height: 856px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Blur Effect */
.offer-background-blur {
    position: absolute;
    width: 1787px;
    height: 295px;
    right: -400px;
    top: 50%;
    transform: translateY(-50%) rotate(1deg);
    background: var(--secondary-main);
    border-radius: 50%;
    filter: blur(400px);
    opacity: 0.67;
    z-index: 0;
}

.offer-content-wrapper {
    max-width: 1194px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    position: relative;
    z-index: 1;
}

/* Header Content */
.offer-header-content {
    max-width: 786px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.offer-section-title {
    color: var(--text-invert);
    font-size: 64px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    line-height: 58.88px;
    margin: 0;
}

.offer-section-description {
    color: var(--text-invert);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 28.8px;
    margin: 0;
}

/* Services Grid */
.offer-services-grid {
    width: 100%;
    max-width: 1192px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.offer-services-row {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.offer-service-card {
    flex: 1;
    padding: 24px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.12) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.offer-service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.offer-service-icon {
    padding: 12px;
    border-radius: 8px;
    width: fit-content;
    display: flex;
}

.offer-service-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--secondary-main);
}

.offer-service-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.offer-service-title {
    color: var(--text-invert);
    font-size: 18px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    margin: 0;
}

.offer-service-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    line-height: 25.6px;
    margin: 0;
}

/* Special "See More" Card */
.offer-see-more-card {
    flex: 1;
    padding: 24px;
    background: var(--secondary-main);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    min-height: 100%;
}

.offer-see-more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(156, 255, 79, 0.3);
    background: #a8ff5a;
}

.offer-see-more-icon {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-see-more-text {
    color: var(--text-title);
    font-size: 32px;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    text-align: left;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .offer-services-section {
        padding: 60px 32px;
    }

    .offer-section-title {
        font-size: 48px;
        line-height: 44px;
    }

    .offer-services-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }

    .offer-services-section {
        padding: 40px 20px;
    }

    .offer-section-title {
        font-size: 36px;
        line-height: 32px;
    }

    .offer-section-description {
        font-size: 16px;
        line-height: 24px;
    }

    .offer-services-row {
        flex-direction: column;
        gap: 16px;
    }

    .offer-service-card {
        padding: 20px;
    }

    .offer-see-more-text {
        font-size: 24px;
    }

    .logo-text {
        font-size: 16px;
    }

    .back-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .nav-buttons {
        gap: 16px;
    }

    .nav-button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .offer-services-section {
        padding: 30px 16px;
    }

    .offer-section-title {
        font-size: 28px;
        line-height: 28px;
    }

    .offer-service-card {
        padding: 16px;
    }

    .offer-service-title {
        font-size: 16px;
    }

    .offer-service-description {
        font-size: 14px;
        line-height: 22px;
    }
}

/* Footer Section Styles */
.footer-section {
    background: #ffffff;
    width: 100%;
}

.footer-header {
    background: linear-gradient(90deg, #2e929c 0%, #9cff4f 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 64px;
    position: relative;
    overflow: hidden;
}

.footer-logo-section {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-overlay {
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(2px);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-text {
    color: white;
    font-size: 32px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 32px;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateX(5px);
}

.footer-cta-text {
    color: #202431;
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
}

.footer-arrow-icon {
    width: 32px;
    height: 32px;
    background: rgba(32, 36, 49, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content {
    background:
        radial-gradient(ellipse 57.49% 114.18% at 94.38% 26.58%, rgba(255, 209, 7, 0.2) 0%, rgba(255, 255, 255, 0) 0%),
        radial-gradient(ellipse 68.46% 415.98% at 4.04% 100%, rgba(156, 255, 79, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 64px 80px;
    display: grid;
    grid-template-columns: 2fr 1px 1.5fr 1px 1fr 1px 1fr;
    gap: 32px;
    align-items: start;
    position: relative;
}

.footer-divider {
    background: repeating-linear-gradient(to bottom,
            black,
            black 4px,
            transparent 4px,
            transparent 8px);
    background-color: black;
    width: 1px;
}

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

.footer-column-title {
    color: #202431;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 28px;
    margin: 0;
}

.footer-description {
    justify-content: space-between;
    min-height: 240px;
}

.footer-description-text {
    color: #202431;
    font-size: 24px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.footer-copyright {
    color: #202431;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    line-height: 24px;
    margin-top: auto;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.footer-link {
    color: #202431;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #2e929c;
}

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

.contact-item {
    color: #202431;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    line-height: 24px;
}

.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateX(5px);
}

.social-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.social-twitter {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_14523_21252)'%3E%3Cpath d='M12.8034 11.5913L18.2043 19.3165H15.9878L11.5806 13.0127V13.0123L10.9335 12.087L5.78516 4.72266H8.00168L12.1564 10.6659L12.8034 11.5913Z' fill='black'/%3E%3Cpath d='M21.4067 0H2.59325C1.16108 0 0 1.16108 0 2.59325V21.4067C0 22.8389 1.16108 24 2.59325 24H21.4067C22.8389 24 24 22.8389 24 21.4067V2.59325C24 1.16108 22.8389 0 21.4067 0ZM15.308 20.3525L10.8481 13.8617L5.26435 20.3525H3.82122L10.2073 12.9295L3.82122 3.63521H8.69203L12.9152 9.78152L18.2026 3.63521H19.6458L13.5562 10.7139H13.5558L20.1788 20.3525H15.308Z' fill='black'/%3E%3C/g%3E%3C/svg%3E");
}

.social-linkedin {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0000' d='M23.498 6.186a2.97 2.97 0 00-2.09-2.103C19.505 3.5 12 3.5 12 3.5s-7.505 0-9.408.583a2.97 2.97 0 00-2.09 2.103A30.264 30.264 0 000 12a30.264 30.264 0 00.502 5.814 2.97 2.97 0 002.09 2.103C4.495 20.5 12 20.5 12 20.5s7.505 0 9.408-.583a2.97 2.97 0 002.09-2.103A30.264 30.264 0 0024 12a30.264 30.264 0 00-.502-5.814z'/%3E%3Cpath fill='%23fff' d='M9.75 15.02l6.27-3.02-6.27-3.02v6.04z'/%3E%3C/svg%3E");
}

.social-telegram {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_14523_21266)'%3E%3Cpath d='M20.7273 0H3.27273C1.46525 0 0 1.46525 0 3.27273V20.7273C0 22.5347 1.46525 24 3.27273 24H20.7273C22.5347 24 24 22.5347 24 20.7273V3.27273C24 1.46525 22.5347 0 20.7273 0Z' fill='%231C8ADB'/%3E%3Cpath d='M18.5362 6.20528L18.288 6.29528L4.81802 11.1485C4.72256 11.178 4.6396 11.2383 4.58213 11.3201C4.52466 11.4018 4.49594 11.5003 4.50046 11.6001C4.50499 11.6999 4.5425 11.7954 4.60712 11.8716C4.67175 11.9478 4.75983 12.0004 4.85757 12.0212L8.34438 12.9757L8.99484 14.8848L9.64529 16.7939C9.68266 16.8875 9.7423 16.9706 9.81905 17.0359C9.8958 17.1012 9.98733 17.1467 10.0857 17.1686C10.184 17.1905 10.2863 17.1881 10.3835 17.1615C10.4807 17.135 10.5699 17.0851 10.6435 17.0162L12.4448 15.3144L15.9821 17.713C16.4144 18.0076 17.0307 17.7894 17.1412 17.3039L19.4839 6.95255C19.5985 6.43983 19.0585 6.01846 18.5362 6.20528ZM16.8167 8.50301L10.7307 13.4776L10.4444 13.7121C10.3815 13.762 10.3404 13.8343 10.3298 13.9139L10.2657 14.443L10.0898 15.9294C10.0913 15.9475 10.0855 15.9654 10.0737 15.9792C10.062 15.993 10.0452 16.0016 10.0271 16.003C10.009 16.0045 9.99111 15.9987 9.9773 15.9869C9.96349 15.9751 9.95492 15.9584 9.95347 15.9403L9.45847 14.4553L8.94711 12.9348C8.92548 12.8665 8.92836 12.7927 8.95524 12.7263C8.98212 12.6598 9.03132 12.6048 9.09438 12.5707L15.4271 8.94073L16.6189 8.25892C16.7921 8.15801 16.9694 8.37755 16.8167 8.50301Z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
}

.social-text {
    color: #202431;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
    line-height: 24px;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 32px 40px;
    }

    .footer-content {
        padding: 40px;
    }

    .footer-cta-text {
        font-size: 20px;
    }

    .footer-logo-text {
        font-size: 24px;
    }

    .footer-description-text {
        font-size: 20px;
    }
}