:root {
    --primary-gradient: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
    --accent-color: #e94560ab;
    --accent-solid: #e94560;
    --dark-blue: #1e293b;
    --light-blue: #dbebfc;
    --light-pink: #f6d6da;
    --white: #ffffff;
    --off-white: #f9fafc;
    --light-gray: #f0f2f5;
    --medium-gray: #e1e5eb;
    --dark-gray: #4a5568;
    --text-dark: #2d3748;
    --text-light: #718096;
    --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.08);
    --shadow-md: 0 4px 16px rgba(30, 41, 59, 0.12);
    --shadow-lg: 0 8px 32px rgba(30, 41, 59, 0.16);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pakta-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--off-white);
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.3;
}

.pakta-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.pakta-section {
    padding: 80px 0;
    position: relative;
}

.pakta-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.pakta-section-subtitle {
    color: var(--accent-solid);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    margin-bottom: 12px;
}

.pakta-section-title {
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
}

.pakta-section-description {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 30px;
}

.pakta-btn {
    padding: 18px 36px;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    min-height: 48px;
}

.pakta-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.pakta-btn:hover:before {
    transform: translateX(0);
}

.pakta-btn-primary {
    background: var(--accent-solid);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.pakta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
    color: white;
}

.pakta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pakta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    color: white;
}

.pakta-main-header {
    background: var(--primary-gradient);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: var(--border-radius-xl);
    border-bottom-right-radius: var(--border-radius-xl);
    box-shadow: 0 10px 40px rgba(30, 41, 59, 0.1);
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

.pakta-main-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2' fill='%231e293b' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.pakta-main-header:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.pakta-header-content {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pakta-header-badge {
    display: inline-block;
    background: var(--accent-solid);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(233, 69, 96, 0.25);
    animation: pakta-float 3s ease-in-out infinite;
}

@keyframes pakta-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.pakta-header-title {
    font-size: 56px;
    margin-bottom: 25px;
    color: var(--dark-blue);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(30, 41, 59, 0.05);
}

.pakta-header-title span {
    color: var(--accent-solid);
    position: relative;
    background: linear-gradient(120deg, var(--accent-solid) 0%, #ff6b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pakta-header-description {
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    padding: 20px 30px;
    backdrop-filter: blur(10px);
}

.pakta-header-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pakta-header-cta .pakta-btn-primary {
    background: #0f3460;
    color: white;
    box-shadow: 0 8px 25px rgba(30, 41, 59, 0.3);
    padding: 18px 40px;
    font-size: 17px;
}

.pakta-header-cta .pakta-btn-primary:hover {
    background: var(--accent-solid);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(233, 69, 96, 0.4);
}

.pakta-header-cta .pakta-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-blue);
    border: 2px solid rgba(30, 41, 59, 0.2);
    padding: 18px 40px;
    font-size: 17px;
    backdrop-filter: blur(10px);
}

.pakta-header-cta .pakta-btn-secondary:hover {
    background: #0f3460;
    color: white;
    border-color: var(--dark-blue);
    transform: translateY(-5px);
}

.pakta-journey-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

.pakta-journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-color) 50%, transparent 100%);
}

.pakta-journey-container {
    position: relative;
    z-index: 2;
}

.pakta-journey-path {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 80px;
}

.pakta-journey-line {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 6px;
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--accent-solid) 50%, #ff9a3d 100%);
    border-radius: 3px;
    z-index: 1;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3);
}

.pakta-journey-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 3px;
}

.pakta-journey-step {
    position: relative;
    width: 30%;
    z-index: 2;
    transition: transform 0.4s ease;
}

.pakta-journey-step:hover {
    transform: translateY(-10px);
}

.pakta-step-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pakta-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--dark-blue), var(--accent-solid));
}

.pakta-step-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pakta-journey-step:hover .pakta-step-card::after {
    opacity: 1;
}

.pakta-journey-step:hover .pakta-step-card {
    border-color: var(--accent-color);
    box-shadow: 0 25px 50px rgba(233, 69, 96, 0.15);
}

.pakta-journey-step:nth-child(2) {
    margin-top: -40px;
}

.pakta-step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #0f3460;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    z-index: 3;
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.3);
    border: 4px solid white;
    display: none;
}

.pakta-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-solid);
    box-shadow: 0 10px 25px rgba(233, 69, 96, 0.1);
    transition: transform 0.4s ease;
}

.pakta-journey-step:hover .pakta-step-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--white);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.15);
}

.pakta-step-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.pakta-step-description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.6;
}

.pakta-step-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.pakta-step-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
    color: var(--dark-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pakta-step-features li:last-child {
    border-bottom: none;
}

.pakta-step-features li i {
    color: var(--accent-solid);
    font-size: 12px;
}

.pakta-tracks-section {
    background: var(--primary-gradient);
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 80px;
}

.pakta-spring-tracks-container {
    max-width: 900px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 0 20px;
}

.pakta-spring-track-item {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    margin-left: 55px;
    transition: transform 0.3s ease;
}

.pakta-spring-track-item:hover {
    transform: translateX(10px);
}

.pakta-spring-track-bar {
    flex: 1;
    height: 100%;
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 0 40px 0 80px;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.pakta-spring-circle-wrapper {
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
}

.pakta-spring-circle-inner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    border: 6px solid #ccc;
    color: #333;
}

.pakta-spring-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.pakta-spring-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.pakta-spring-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.4;
}

.pakta-spring-icon {
    margin-right: 12px;
    opacity: 0.9;
}

.pakta-st-orange .pakta-spring-track-bar {
    background: #0f3460;
}

.pakta-st-orange .pakta-spring-circle-inner {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
}

.pakta-st-blue .pakta-spring-track-bar {
    background: var(--accent-color);
}

.pakta-st-blue .pakta-spring-circle-inner {
    border-color: var(--accent-color);
    color: var(--accent-solid);
}

.pakta-st-pink .pakta-spring-track-bar {
    background: #0f3460;
}

.pakta-st-pink .pakta-spring-circle-inner {
    border-color: var(--dark-blue);
    color: var(--dark-blue);
}

.pakta-st-brand .pakta-spring-track-bar {
    background: var(--accent-color);
}

.pakta-st-brand .pakta-spring-circle-inner {
    border-color: var(--accent-color);
    color: var(--accent-solid);
}

.pakta-application-process-section {
    margin-top: 80px;
    padding: 60px 40px;
    background: transparent;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: none;
    border: none;
}

.pakta-application-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231e293b' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.pakta-process-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pakta-process-title {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.pakta-process-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

.pakta-process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 60px 0;
    z-index: 2;
}

.pakta-process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-blue) 0%, var(--accent-color) 100%);
    z-index: 1;
    border-radius: 2px;
}

.pakta-process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 2;
}

.pakta-process-circle {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pakta-process-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pakta-process-step:hover .pakta-process-circle::before {
    opacity: 0;
}

.pakta-process-step:hover .pakta-process-circle {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.25);
}

.pakta-process-step-icon {
    font-size: 32px;
    color: var(--accent-solid);
    margin-bottom: 0;
    transition: all 0.4s ease;
}

.pakta-process-step:hover .pakta-process-step-icon {
    color: var(--accent-solid);
}

.pakta-process-step-content {
    text-align: center;
    padding: 0 15px;
    max-width: 250px;
}

.pakta-process-step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.pakta-process-step-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.pakta-process-step:hover .pakta-process-step-title {
    color: var(--accent-solid);
}

.pakta-criteria-section {
    background-color: #fdfdfd;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.pakta-criteria-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 40px 0;
    width: 100%;
}

.pakta-criteria-row {
    display: flex;
    justify-content: center;
    gap: 119px;
    width: 100%;
}

.pakta-criteria-row.top {
    margin-bottom: -20px;
}

.pakta-criteria-row.bottom {
    margin-top: -20px;
    position: relative;
    left: 172px;
}
#page-local-staticpage-onboarding #main-content {
    padding: 0;
}
.pakta-criteria-hex {
    position: relative;
    width: 247px;
    height: 257px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #0f3460;
    padding: 20px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.1);
}

.pakta-criteria-hex:hover {
    transform: translateY(-10px) scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.2);
}

.pakta-criteria-hex.green {
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
}

.pakta-criteria-hex.blue {
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
}

.pakta-criteria-hex.gray {
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
}

.pakta-hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.pakta-hex-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #0f3460;
    transition: transform 0.3s ease;
}

.pakta-criteria-hex:hover .pakta-hex-icon {
    transform: scale(1.2) rotate(5deg);
}

.pakta-hex-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #0f3460;
}

.pakta-hex-desc {
    font-size: 12px;
    line-height: 1.4;
    color: #374151;
    font-weight: 400;
}

.pakta-faq-section {
    background: var(--off-white);
}

.pakta-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.pakta-faq-item {
    background: var(--white);
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid transparent;
    transition: var(--transition);
}

.pakta-faq-item.active {
    border-left-color: var(--accent-solid);
    box-shadow: var(--shadow-md);
}

.pakta-faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    min-height: 70px;
}

.pakta-faq-icon {
    color: var(--accent-solid);
    transition: var(--transition);
}

.pakta-faq-item.active .pakta-faq-icon {
    transform: rotate(180deg);
}

.pakta-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-light);
}

.pakta-faq-item.active .pakta-faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.pakta-cta-section {
    background: #0f3460;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pakta-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.pakta-cta-title {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.pakta-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.pakta-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pakta-floating-element {
    position: absolute;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: pakta-float-around 20s infinite linear;
}

.pakta-floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 80px;
    height: 80px;
    background: var(--dark-blue);
    animation-duration: 25s;
}

.pakta-floating-element:nth-child(2) {
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--accent-solid);
    animation-duration: 20s;
    animation-delay: -5s;
}

.pakta-floating-element:nth-child(3) {
    bottom: 30%;
    left: 15%;
    width: 40px;
    height: 40px;
    background: var(--dark-blue);
    animation-duration: 30s;
    animation-delay: -10s;
}

section#experienced-tracks {
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

section.pakta-criteria-section.pakta-section {
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

section#yui_3_18_1_1_1770100953125_25 {
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

section.pakta-cta-section.pakta-section {
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

@keyframes pakta-float-around {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }

    50% {
        transform: translate(0, 100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

.pakta-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.pakta-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 0;
}

@media (min-width: 1200px) {
    .pakta-container {
        max-width: 1280px;
    }

    .pakta-criteria-hex {
        width: 220px;
        height: 240px;
    }

    .pakta-hex-title {
        font-size: 17px;
    }

    .pakta-hex-desc {
        font-size: 13px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .pakta-criteria-section .pakta-container {
        max-width: 100%;
        padding: 0 40px;
    }

    .pakta-criteria-grid {
        gap: 30px;
        padding: 30px 0;
    }

    .pakta-criteria-row {
        gap: 80px;
    }

    .pakta-criteria-row.bottom {
        left: 140px;
    }

    .pakta-criteria-hex {
        width: 180px;
        height: 200px;
        padding: 18px 20px;
    }

    .pakta-hex-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .pakta-hex-title {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .pakta-hex-desc {
        font-size: 11px;
        line-height: 1.4;
    }

    .pakta-section-title {
        font-size: 36px;
    }

    .pakta-section-description {
        font-size: 17px;
        max-width: 700px;
        margin-top: 20px;
    }

    .pakta-header-title {
        font-size: 44px;
    }

    .pakta-journey-step {
        width: 31%;
    }

    .pakta-step-card {
        padding: 35px 25px;
    }

    .pakta-spring-tracks-container {
        max-width: 850px;
    }
}

@media (min-width: 992px) and (max-width: 1100px) {
    .pakta-criteria-row {
        gap: 70px;
    }

    .pakta-criteria-row.bottom {
        left: 120px;
    }

    .pakta-criteria-hex {
        width: 160px;
        height: 180px;
        padding: 16px 18px;
    }

    .pakta-hex-icon {
        font-size: 22px;
    }

    .pakta-hex-title {
        font-size: 14px;
    }

    .pakta-hex-desc {
        font-size: 10px;
        line-height: 1.3;
    }

    .pakta-spring-track-bar {
        padding: 0 35px 0 75px;
    }

    .pakta-spring-circle-wrapper {
        left: -45px;
        width: 100px;
        height: 100px;
    }

    .pakta-spring-circle-inner {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}

@media (max-width: 992px) {
    .pakta-header-title {
        font-size: 36px;
    }

    .pakta-header-description {
        font-size: 18px;
        padding: 15px 20px;
    }

    .pakta-section-title {
        font-size: 32px;
    }

    .pakta-section-description {
        font-size: 16px;
    }

    .pakta-journey-path {
        flex-direction: column;
        align-items: center;
        gap: 60px;
        margin-top: 60px;
    }

    .pakta-journey-step {
        width: 100%;
        max-width: 500px;
        margin-top: 0 !important;
    }

    .pakta-journey-line {
        display: none;
    }

    .pakta-spring-track-item {
        height: 100px;
        margin-left: 40px;
    }

    .pakta-spring-circle-wrapper {
        left: -40px;
        width: 80px;
        height: 80px;
    }

    .pakta-spring-circle-inner {
        width: 60px;
        height: 60px;
        font-size: 36px;
        border-width: 4px;
    }

    .pakta-spring-track-bar {
        padding: 0 30px 0 60px;
    }

    .pakta-spring-title {
        font-size: 20px;
    }

    .pakta-spring-desc {
        font-size: 14px;
    }

    .pakta-process-timeline {
        flex-wrap: wrap;
        gap: 40px;
    }

    .pakta-process-timeline::before {
        display: none;
    }

    .pakta-process-step {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 30px;
    }

    .pakta-process-circle {
        width: 100px;
        height: 100px;
    }

    .pakta-process-step-icon {
        font-size: 28px;
    }

    .pakta-process-step-content {
        max-width: 100%;
    }

    .pakta-criteria-hex {
        width: 130px;
        height: 145px;
        padding: 15px 20px;
    }

    .pakta-criteria-row.bottom {
        left: 65px;
    }

    .pakta-hex-title {
        font-size: 15px;
    }

    .pakta-hex-desc {
        font-size: 11px;
    }

    .pakta-cta-title {
        font-size: 36px;
    }

    .pakta-cta-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .pakta-section {
        padding: 60px 0;
    }

    .pakta-container {
        padding: 0 16px;
    }

    .pakta-main-header {
        padding: 60px 0 80px;
        border-bottom-left-radius: var(--border-radius-lg);
        border-bottom-right-radius: var(--border-radius-lg);
    }

    .pakta-header-title {
        font-size: 32px;
    }

    .pakta-header-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .pakta-header-description {
        font-size: 16px;
        padding: 15px;
        margin-bottom: 30px;
    }

    .pakta-header-cta {
        gap: 15px;
        margin-top: 30px;
    }

    .pakta-header-cta .pakta-btn,
    .pakta-header-cta .pakta-btn-primary,
    .pakta-header-cta .pakta-btn-secondary {
        padding: 15px 30px;
        font-size: 15px;
        width: 100%;
        max-width: 300px;
    }

    .pakta-section-header {
        margin-bottom: 40px;
    }

    .pakta-section-title {
        font-size: 28px;
    }

    .pakta-section-description {
        font-size: 15px;
        margin-top: 20px;
    }

    .pakta-journey-section {
        padding: 60px 0;
    }

    .pakta-step-card {
        padding: 25px 20px;
    }

    .pakta-step-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
        margin-bottom: 20px;
    }

    .pakta-step-title {
        font-size: 22px;
    }

    .pakta-step-description {
        font-size: 14px;
    }

    .pakta-step-features li {
        font-size: 13px;
    }

    .pakta-tracks-section {
        padding-bottom: 60px;
    }

    .pakta-spring-track-item {
        height: auto;
        min-height: 80px;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .pakta-spring-circle-wrapper {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 50px;
        z-index: 3;
    }

    .pakta-spring-circle-inner {
        width: 40px;
        height: 40px;
        font-size: 24px;
        border-width: 3px;
    }

    .pakta-spring-track-bar {
        border-radius: var(--border-radius-md);
        padding: 20px 20px 20px 70px !important;
        min-height: 80px;
        display: flex;
        align-items: center;
    }

    .pakta-spring-tracks-container {
        gap: 25px;
        padding: 0;
        margin-top: 20px;
    }

    .pakta-application-process-section {
        margin-top: 40px;
        padding: 40px 20px;
    }

    .pakta-process-header {
        margin-bottom: 30px;
    }

    .pakta-process-title {
        font-size: 24px;
    }

    .pakta-process-subtitle {
        font-size: 16px;
    }

    .pakta-process-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin: 40px 0;
    }

    .pakta-process-step {
        flex: 0 0 100%;
        margin-bottom: 0;
    }

    .pakta-process-circle {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .pakta-process-step-icon {
        font-size: 26px;
    }

    .pakta-process-step-title {
        font-size: 18px;
    }

    .pakta-process-step-desc {
        font-size: 13px;
    }

    .pakta-criteria-grid {
        gap: 20px;
        padding: 20px 0;
    }

    .pakta-criteria-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        left: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .pakta-criteria-row.top,
    .pakta-criteria-row.bottom {
        position: static;
        margin: 0;
    }

    .pakta-criteria-hex {
        width: 130px;
        height: 150px;
        padding: 15px;
        margin: 10px;
    }

    .pakta-hex-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .pakta-hex-title {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .pakta-hex-desc {
        font-size: 11px;
        line-height: 1.3;
    }

    .pakta-faq-section {
        padding: 60px 0;
    }

    .pakta-faq-question {
        padding: 20px 15px;
        font-size: 16px;
        min-height: 60px;
    }

    .pakta-cta-section {
        padding: 60px 0;
    }

    .pakta-cta-title {
        font-size: 32px;
    }

    .pakta-cta-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .pakta-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .pakta-cta-buttons .pakta-btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        min-height: 50px;
    }

    .pakta-floating-element {
        display: none;
    }
}

@media (max-width: 640px) {
    .pakta-criteria-row {
        gap: 10px;
    }

    .pakta-criteria-hex {
        width: 110px;
        height: 130px;
        padding: 12px;
    }

    .pakta-hex-icon {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .pakta-hex-title {
        font-size: 12px;
    }

    .pakta-hex-desc {
        font-size: 10px;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .pakta-header-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .pakta-section-title {
        font-size: 24px;
    }

    .pakta-section-subtitle {
        font-size: 12px;
    }

    .pakta-header-cta {
        flex-direction: column;
        align-items: center;
    }

    .pakta-header-cta .pakta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pakta-header-title {
        padding: 0 10px;
    }

    .pakta-header-description {
        margin: 0 10px 30px;
    }

    .pakta-journey-step {
        max-width: 100%;
    }

    .pakta-step-card {
        padding: 20px 15px;
        margin: 0 10px;
    }

    .pakta-step-title {
        font-size: 20px;
    }

    .pakta-step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        transform: scale(0.9);
    }

    .pakta-spring-track-item {
        min-height: 70px;
    }

    .pakta-spring-circle-wrapper {
        width: 50px;
        height: 50px;
    }

    .pakta-spring-circle-inner {
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-width: 2px;
    }

    .pakta-spring-track-bar {
        padding: 15px 15px 15px 60px !important;
    }

    .pakta-spring-title {
        font-size: 16px;
    }

    .pakta-spring-desc {
        font-size: 12px;
    }

    .pakta-application-process-section {
        padding: 30px 15px;
    }

    .pakta-process-title {
        font-size: 22px;
    }

    .pakta-process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pakta-criteria-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .pakta-criteria-hex {
        width: 180px;
        height: 200px;
        padding: 20px;
    }

    .pakta-hex-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .pakta-hex-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .pakta-hex-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .pakta-cta-title {
        font-size: 28px;
    }

    .pakta-btn {
        padding: 16px 24px;
        font-size: 15px;
    }
}

@media (max-width: 360px) {
    .pakta-header-title {
        font-size: 24px;
    }

    .pakta-header-description {
        font-size: 14px;
    }

    .pakta-section-title {
        font-size: 22px;
    }

    .pakta-criteria-hex {
        width: 160px;
        height: 180px;
        padding: 15px;
    }

    .pakta-hex-title {
        font-size: 14px;
    }

    .pakta-hex-desc {
        font-size: 11px;
    }

    .pakta-cta-title {
        font-size: 24px;
    }

    .pakta-cta-description {
        font-size: 14px;
    }

    .pakta-container {
        padding: 0 12px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .pakta-header-title {
        font-size: 42px;
    }

    .pakta-header-title {
        font-size: 32px;
    }

    .pakta-header-description {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .pakta-journey-section,
    .pakta-tracks-section,
    .pakta-criteria-section,
    .pakta-faq-section {
        padding: 40px 0;
    }

    .pakta-section-header {
        margin-bottom: 30px;
    }
}

@supports (padding: max(0px)) {

    .pakta-container,
    .pakta-header-content,
    .pakta-cta-content {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }

    .pakta-main-header,
    .pakta-cta-section {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

@media (max-width: 768px) {

    .pakta-header-title,
    .pakta-section-title,
    .pakta-cta-title {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .pakta-header-description,
    .pakta-section-description,
    .pakta-cta-description {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 768px) {

    input,
    select,
    textarea {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

