/* TradeitLanding.css */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto;
}

.landing-container {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: visible;
}

.landing-icon {
    background-image: url("../img/landing_icon.svg");
}

.landing-container {
    min-height: 100vh;
    background-color: #ffffff;
    font-family: 'Inter', 'Pretendard', sans-serif;
}

/* Floating Language Switcher */
.language-switcher {
    position: fixed;
    top: 3rem;
    right: 5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: #ffffff;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 10px;
    border: 1px solid #f3f4f6;
}

.language-switcher-buttons {
    display: flex;
    align-items: center;
    background-color: #f3f4f6;
    border-radius: 9999px;
    padding: 0.25rem;
}

.lang-btn {
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #6b7280;
    font-size: 0.875rem;
}

.lang-btn:hover {
    color: #1a1a1a;
}

.lang-btn.active {
    background-color: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.login-text {
    color: #4a4a4a;
    font-size: 1rem;
    font-weight: 500;
    padding-right: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.login-text:hover {
    color: #2B7FFF;
}

/* Hero Section */
.hero-section {
    padding: 96px 240px 0 240px;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 986px;
    height: 986px;
    top: 327px;
    left: -123px;
    background: #F9ECC9;
    filter: blur(200px);
    border-radius: 50%;
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    display: block;
    width: 1090px;
    height: 1090px;
    top: 298px;
    left: 842px;
    background: #A7ECFB;
    filter: blur(200px);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.42rem;
    font-weight: 500;
    color: #007aff;
    background-color: #fff;
    border-radius: 9999px;
    margin-bottom: 2rem;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    color: #12173f;
    margin-bottom: 0.5rem;
    line-height: 1.2em;
}

.hero-title-highlight {
    font-size: 50px;
    font-weight: 800;
    color: #007aff;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}

.hero-title-highlight.en {
    display: block;
}

.hero-title-highlight::before {
    content: "";
    position: absolute;
    display: block;
    width: 240px;
    height: 21px;
    background: #e7f0ff;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hero-title-highlight.en::before {
    left: 50%;
    transform: translateX(-52%);
    width: 438px;
}

.hero-title div {
    font-size: 50px;
    font-weight: 800;
    color: #12173f;
    margin-bottom: 20px;
    line-height: 1.0em;
    margin-top: -10px;
}

.hero-subtitle {
    color: #384349;
    margin-bottom: 55px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #2B7FFF;
    color: #ffffff;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 53px;
    font-size: 20px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #2563eb;
}

.cta-button .landing-icon {
    display: block;
    width: 24px;
    height: 24px;
    background-position: -95px -55px;
}

.hero-content .img-box {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid #fff;
    padding: 12px;
    border-radius: 12px;
}

.hero-content img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Pain Points Section */
.pain-points-section {
    padding: 96px 0;
}

.section-header {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #12173f;
    margin-bottom: 50px;
}

.section-title-highlight {
    color: #2B7FFF;
    font-size: 35px;
    font-weight: 700;
}

.pain-points-section .section-title-highlight {
    color: #657997;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #384349;
    padding-top: 10px;
}

.pain-points-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pain-point-card {
    background-color: #FBFCFD;
    border-radius: 10px;
    padding: 30px 26px;
    box-shadow: 0 4px 18px 0 rgba(0, 45, 78, 0.08);
    transition: box-shadow 0.2s ease;
}

.pain-point-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.pain-point-icon {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.pain-point-icon .landing-icon {
    display: block;
    width: 24px;
    height: 24px;
}

.pain-point-icon .landing-icon.search {
    background-position: -55px -55px;
}

.pain-point-icon .landing-icon.talk {
    background-position: -139px -55px;
}

.pain-point-icon .landing-icon.users {
    background-position: -183px -55px;
}

.pain-point-title {
    font-weight: 500;
    font-size: 20px;
    color: #12173f;
    margin-bottom: 20px;
    white-space: pre-line;
    line-height: 1.0em;
}

.pain-point-title.en {
    height: 40px;
}

.pain-point-desc {
    font-size: 16px;
    line-height: 1.4em;
    color: #384349;
    white-space: pre-line;
}

/* Solution Section */
.solution-section {
    padding: 96px 0;
}

.content-badge {
    display: inline-block;
    padding: 8px 20px;
    font-weight: 500;
    color: #2B7FFF;
    border-radius: 9999px;
    margin-bottom: 20px;
    border: 1px solid #2B7FFF;
}

.solution-grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.solution-card {
    background: linear-gradient(-64deg, #FDF9ED, #F1FCFE);
    border-radius: 10px;
    padding: 30px 26px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.solution-card:hover {
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.solution-icon {
    width: 44px;
    height: 44px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-icon .landing-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.solution-icon .landing-icon.report {
    background-position: -227px -55px;
}

.solution-icon .landing-icon.earth {
    background-position: -271px -55px;
}

.solution-icon .landing-icon.target {
    background-position: -315px -55px;
}

.solution-icon .landing-icon.data {
    background-position: -359px -55px;
}

.solution-title {
    font-weight: 600;
    color: #12173f;
    font-size: 20px;
    margin-bottom: 20px;
}

.solution-desc {
    font-size: 16px;
    color: #384349;
    line-height: 1.4em;
    white-space: pre-line;
}

/* Workflow Section */
.workflow-section {
    padding: 96px 0;
}

.step-indicators {
    max-width: 1015px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.step-indicators::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #B4E6EB;
    z-index: -1;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #5297ff;
    background: #F3FCFC;
}

.workflow-grid {
    max-width: 1440px;
    margin: -15px auto 0 auto;
    position: relative;
    z-index: 2;
}

.workflow-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.workflow-bottom-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.workflow-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    padding: 30px 30px 0 30px;
}

.workflow-top-row .workflow-card:nth-child(1) {
    padding-right: 0;
}

.workflow-top-row .workflow-card:nth-child(3) {
    padding-left: 0;
}

.workflow-card-title {
    font-weight: 600;
    color: #12173f;
    font-size: 18px;
    margin-bottom: 16px;
}

.workflow-card-desc {
    font-size: 16px;
    color: #12173f;
    margin-bottom: 30px;
    line-height: 1.2em;
    white-space: pre-line;
}

.workflow-top-row .workflow-card:nth-child(1) .workflow-card-desc {
    padding-right: 30px;
}

.workflow-top-row .workflow-card:nth-child(3) .workflow-card-desc,
.workflow-top-row .workflow-card:nth-child(3) .workflow-card-title {
    padding-left: 30px;
}

.workflow_img_box {
    border: 1px solid #eee;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.06);
    border-bottom: none;
    overflow: hidden;
}

.workflow_img_box img {
    width: 100%;
    height: auto;
}

.workflow-top-row .workflow-card:nth-child(1) .workflow_img_box {
    border-top-left-radius: 10px;
    border-right: none;
}

.workflow-top-row .workflow-card:nth-child(2) .workflow_img_box {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.workflow-top-row .workflow-card:nth-child(3) .workflow_img_box {
    border-top-right-radius: 10px;
    border-left: none;
}

/* AI Section */
.ai-section {
    padding: 96px 0 168px 0;
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: "";
    position: absolute;
    display: block;
    width: 986px;
    height: 986px;
    top: 327px;
    left: -123px;
    background: #F9ECC9;
    filter: blur(200px);
    border-radius: 50%;
    z-index: 0;
}

.ai-section::after {
    content: "";
    position: absolute;
    display: block;
    width: 1090px;
    height: 1090px;
    top: 298px;
    left: 842px;
    background: #A7ECFB;
    filter: blur(200px);
    border-radius: 50%;
    z-index: 0;
}

.ai-carousel-inner {
    position: relative;
    z-index: 3;
}

.ai-subtitle {
    color: #384349;
}

.ai-carousel {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.ai-carousel-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background-color 0.2s ease;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.carousel-btn:hover {
    background: #eee;
}

.carousel-btn .landing-icon {
    display: block;
    width: 44px;
    height: 44px;
}

.carousel-btn .landing-icon.left {
    background-position: -55px -130px;
}

.carousel-btn .landing-icon.right {
    background-position: -119px -130px;
}

.play-btn {
    border: none;
    position: absolute;
    bottom: -96px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s ease;
    cursor: pointer;
}

.play-btn:hover {
    background: #eee;
}

.play-btn .landing-icon {
    background-position: -184px -130px;
    width: 20px;
    height: 20px;
    display: block;
}

.play-btn.playing .landing-icon {
    background-position: -233px -130px;
}

.ai-cards {
    position: relative;
    width: 952px;
    height: 446px;
}

.ai-card {
    position: absolute;
    width: 314px;
    border-radius: 10px;
    padding: 20px;
    transition: all 0.5s ease-out;
    bottom: 0;
}

.ai-card.no-transition {
    transition: none !important;
}

/* Position-based transform for slide effect */
.ai-card.pos-left {
    left: 0;
}

.ai-card.pos-center {
    left: 319px;
}

.ai-card.pos-right {
    left: 638px;
}

.ai-card.default {
    background-color: #ffffff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
    opacity: 0.5;
    height: 396px;
}

.ai-card.featured {
    background-color: #ffffff;
    color: #12173F;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 1;
    height: 446px;
}

.ai-card img {
    margin-bottom: 42px;
}

.ai-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #12173F;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.ai-card p {
    font-size: 16px;
    line-height: 1.4em;
    color: #12173F;
    text-align: center;
    white-space: pre-line;
}

.ai-card.default img {
    height: 235px;
    margin-bottom: 16px;
}

/* Stats Section */
.stats-section {
    padding: 96px 0;
    background-color: #ffffff;
}

.stats-grid {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    box-shadow: 0 0 8px 0 rgba(0, 45, 78, 0.1);
    padding: 30px 26px;
}

.stat-value {
    font-size: 40px;
    font-weight: 700;
    color: #2B7FFF;
    margin-bottom: 20px;
    min-height: 48px;
}

.typing-text {
    display: inline-flex;
    align-items: center;
    font-size: 40px;
    font-weight: 700;
    color: #2B7FFF;
}

.stat-label {
    font-weight: 500;
    color: #12173f;
    font-size: 18px;
    margin-bottom: 20px;
}

.stat-desc {
    font-size: 16px;
    color: #384349;
    line-height: 1.4em;
    white-space: pre-line;
}

/* CTA Section */
.cta-section {
    padding: 0 0 96px 0;
}

.cta-content {
    max-width: 1440px;
    padding-top: 64px;
    margin: 0 auto;
    align-items: center;
    display: flex;
    gap: 65px;
    background: url("../img/cta-bg.png");
    border-radius: 10px;
}

.cta-text {
    flex: 1;
    width: 445px;
    position: relative;
}

.cta-img-box {
    width: calc(100% - 646px);
    position: relative;
    overflow: hidden;
    height: 407px;
    float: left;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #12173f;
    margin-bottom: 0.5rem;
    line-height: 1.2em;
    position: relative;
    z-index: 1;
}

.cta-text::before {
    content: "";
    position: absolute;
    display: block;
    width: 243px;
    height: 21px;
    top: 30px;
    left: 0;
    z-index: 0;
    background: #E7F0FF;
}

.cta-section .section-subtitle {
    margin-bottom: 40px;
    white-space: pre-line;
}

.cta-img-box img {
    position: absolute;
}

.cta-img-box img:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 1;
    width: 506px;
    height: 255px;
}

.cta-img-box img:nth-child(2) {
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 506px;
    height: 110px;
}

.cta-img-box img:nth-child(3) {
    top: 30px;
    right: 0;
    z-index: 1;
    width: 222px;
    height: 240px;
}

.cta-img-box img:nth-child(4) {
    bottom: 0;
    right: 0;
    z-index: 1;
    width: 219px;
    height: 19px;
}

/* Footer */
.landing-container .footer {
    padding: 50px 0;
    border-top: 1px solid #efefef;
    text-align: center;
}

.landing-container .footer .footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.landing-container .footer .footer-content > div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-container .footer .footer-content .button_section {
    padding-left: 5px;
    gap: 15px;
}

.landing-container .footer .footer-content .logo_section span {
    font-size: 14px;
    color: #888;
}

.landing-container .footer .footer-content .button_section button {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #384349;
    cursor: pointer;
}

.landing-container .footer .footer-content .button_section button:hover {
    color: #2B7FFF;
}

.landing-container .footer .footer-content .button_section a span {
    display: block;
    width: 16px;
    height: 16px;
}

.landing-container .footer .footer-content .button_section a span.linkedin {
    background-position: -309px -130px;
}

.landing-container .footer .footer-content .button_section a span.facebook {
    background-position: -273px -130px;
}

.landing-container .footer .footer-content .button_section a span.youtube {
    background-position: -345px -130px;
}

/* ============================================
   MODAL / POPUP STYLES
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.modal-overlay.active {
    display: flex;
}

/* Popup Register Styles */
.popup_register.full_view_wrap {
    position: relative;
    z-index: 100000;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup_register.full_view_wrap .popup_contents {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 28px;
    background: #fff;
    border: 1px solid #F2F8FF;
    border-radius: 6px;
    width: 1440px;
    max-width: 95vw;
    max-height: 90vh;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.popup_register.full_view_wrap .popup_contents .join_popup_title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #12173f;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part {
    overflow-y: auto;
    height: 680px;
    max-height: calc(90vh - 150px);
    padding-right: 20px;
    margin-bottom: 20px;
    list-style: none;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part li {
    margin-bottom: 30px;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part li h3 {
    margin-bottom: 16px;
    background-color: #F3F7FF;
    padding: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #12173f;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part li h5 {
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #12173f;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part li div {
    padding-left: 14px;
    line-height: 1.45em;
    margin-bottom: 20px;
    font-size: 14px;
    color: #384349;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part li .small_info {
    padding-left: 10px;
    display: block;
    line-height: 1.6em;
}

.popup_register.full_view_wrap .popup_contents .popup_scroll_part li p.small_info {
    margin-bottom: 5px;
}

.popup_register.full_view_wrap .popup_contents .close_btn {
    float: right;
    width: 102px;
    height: 37px;
    border-radius: 4px;
    border: none;
    background: #2B7FFF;
    color: #fff;
    transition: all 0.4s;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.popup_register.full_view_wrap .popup_contents .close_btn:hover {
    background: #0053b8;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Base state for all scroll animations */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fade up animation */
.scroll-animate.fade-up {
    transform: translateY(40px);
}

.scroll-animate.fade-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from left */
.scroll-animate.slide-from-left {
    transform: translateX(-60px);
}

.scroll-animate.slide-from-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from right */
.scroll-animate.slide-from-right {
    transform: translateX(60px);
}

.scroll-animate.slide-from-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from left bottom (for workflow) */
.scroll-animate.slide-from-left-bottom {
    transform: translate(-40px, 40px);
}

.scroll-animate.slide-from-left-bottom.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* Slide from right bottom (for workflow) */
.scroll-animate.slide-from-right-bottom {
    transform: translate(40px, 40px);
}

.scroll-animate.slide-from-right-bottom.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay classes */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }
.delay-600 { transition-delay: 0.6s; }
.delay-700 { transition-delay: 0.7s; }
.delay-800 { transition-delay: 0.8s; }

/* ============================================
   WORKFLOW STEP ANIMATIONS
   ============================================ */

.step-indicator {
    transition: all 0.4s ease-out;
}

.step-indicator.active .step-number {
    background-color: #2B7FFF;
    color: #ffffff;
    transform: scale(1.05);
}

.workflow-top-row .workflow-card {
    opacity: 0.4;
    transition: opacity 0.5s ease-out;
}

.workflow-top-row .workflow-card.step-active {
    opacity: 1;
}

.workflow-top-row .workflow_img_box {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.workflow-top-row .workflow_img_box.workflow-img-0 {
    transform: translate(30px, 30px);
}

.workflow-top-row .workflow_img_box.workflow-img-1 {
    transform: translateY(40px);
}

.workflow-top-row .workflow_img_box.workflow-img-2 {
    transform: translate(-30px, 30px);
}

.workflow-top-row .workflow_img_box.animate-in {
    opacity: 1;
    transform: translate(0, 0);
}
.mo {
        display: none;
    }
/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1440px) {
    .hero-section {
        padding: 96px 80px 0 80px;
    }

    .pain-points-grid,
    .stats-grid,
    .workflow-grid,
    .section-header,
    .footer-content {
        max-width: 100%;
        padding: 0 40px;
    }

    .solution-grid {
        max-width: 100%;
        padding: 0 40px;
    }

    .step-indicators {
        max-width: 100%;
        padding: 0 16%;
    }

    .cta-content {
        max-width: 100%;
        margin: 0 40px;
    }

    .ai-carousel {
        max-width: 100%;
        padding: 0 40px;
    }

    .popup_register.full_view_wrap .popup_contents {
        width: 90vw;
    }

    .cta-img-box img:nth-child(3), .cta-img-box img:nth-child(4) {
        display: none;
    }

    .pain-point-title,
    .pain-point-desc,
    .solution-desc,
    .workflow-card-desc,
    .ai-card p,
    .stat-desc,
    .cta-section .section-subtitle {
        white-space: normal;
    }
}

@media (max-width: 1200px) {
    .ai-carousel-inner {
        gap: 0;
    }
    .ai-carousel-inner .carousel-btn:first-child {
        position: absolute;
        bottom: -105px;
        left: 0;
    }
    .ai-carousel-inner .carousel-btn:last-child {
        position: absolute;
        bottom: -105px;
        right: 0;
    }
    .ai-cards {
        width: 100%;
    }
    .ai-card {
        width: 33%
    }
    .ai-card.pos-center {
        left: 50%;
        transform: translateX(-50%);
    }
    .ai-card.pos-right {
        left: initial;
        right: 0;
    }
    .cta-img-box {
        width: 40%;
        overflow: hidden;
    }

    .cta-img-box img:nth-child(1),.cta-img-box img:nth-child(2) {
       height: auto;
    }
}

@media (max-width: 1024px) {
    .language-switcher {
        top: 1.5rem;
        right: 2rem;
        gap: 1.5rem;
    }

    .hero-section {
        padding: 80px 40px 0 40px;
        height: auto;
    }

    .hero-title,
    .hero-title-highlight,
    .hero-title div {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .section-title,
    .section-title-highlight {
        font-size: 28px;
    }

    .cta-button {
        font-size: 18px;
        padding: 12px 32px;
        margin-bottom: 40px;
    }

    .pain-points-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solution-grid {
        gap: 20px;
    }

    .workflow-top-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .workflow-bottom-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .workflow-card {
        padding: 20px 20px 0 20px;
    }

    .workflow-card:nth-child(1) {
        padding-right: 0;
    }

    .workflow-card:nth-child(3) {
        padding-left: 0;
    }

    .workflow-card:nth-child(1) .workflow-card-desc {
        padding-right: 20px;
    }

    .workflow-card:nth-child(3) .workflow-card-desc,
    .workflow-card:nth-child(3) .workflow-card-title {
        padding-left: 20px;
    }

    .step-indicators {
        display: none;
    }

    .ai-card.default {
        height: 350px;
    }

    .ai-card.featured {
        height: 400px;
    }
    .ai-card.featured img, 
    .ai-card.default img {
       width: 100%;
       height: auto;
    }

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

    .popup_register.full_view_wrap .popup_contents {
        width: 95vw;
        padding: 20px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part {
        height: 60vh;
    }

    .cta-content {
        padding: 40px 40px 0 40px;
        gap: 40px;
        flex-direction: column;
    }

    .cta-text {
        width: 100%;
        text-align: center;
    }

    .cta-text::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .cta-img-box {
        width: 100%;
        height: 300px;
    }

    .cta-img-box img:nth-child(2) {
        left: initial;
        right: 0;
        bottom: 0;
    }

    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .language-switcher {
        top: 1rem;
        right: 1rem;
        gap: 1rem;
        padding: 8px;
    }

    .hero-section {
        padding: 70px 20px 40px 20px;
        height: 600px;
    }

    .hero-title,
    .hero-title-highlight,
    .hero-title div {
        font-size: 28px;
    }

    .section-title,
    .section-title-highlight {
        font-size: 24px;
    }

    .pain-points-grid,
    .solution-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-content {
        flex-direction: column;
        padding: 40px 20px;
    }

    .cta-text {
        width: 100%;
        text-align: center;
    }

    .cta-img-box {
        width: 100%;
        height: 250px;
    }

    .ai-section {
        padding: 60px 0 100px 0;
    }

    .ai-carousel {
        padding: 0 20px;
    }

    .ai-carousel-inner {
        gap: 15px;
    }
.ai-carousel-inner {
    width: 314px;
    margin: 0 auto;
}
    .ai-cards {
        width: 314px;
        height: 380px;
        margin: 0 auto;
    }

    .ai-card {
        width: 314px;
    }

    .ai-card.default {
        display: none;
    }

    .ai-card.featured {
        left: 50%;
        height: 380px;
    }

    .ai-card h3 {
        font-size: 16px;
    }

    .ai-card p {
        font-size: 14px;
        white-space: normal;
    }

    .ai-card img {
        width: 274px;
        height: 251px;
        margin-bottom: 20px;
    }
    .ai-carousel-inner .carousel-btn:first-child {
        bottom: -55px;
    }
    .ai-carousel-inner .carousel-btn:last-child {
        bottom: -55px;
    }
    .play-btn {
        bottom: -50px;
    }




    .popup_register.full_view_wrap .popup_contents {
        width: 98vw;
        max-width: 98vw;
        padding: 15px;
        border-radius: 4px;
        max-height: 85vh;
    }

    .popup_register.full_view_wrap .popup_contents .join_popup_title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part {
        height: auto;
        max-height: calc(85vh - 120px);
        padding-right: 10px;
        margin-bottom: 15px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li h3 {
        font-size: 14px;
        padding: 8px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li h5 {
        font-size: 13px;
        padding-left: 8px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li div {
        font-size: 13px;
        padding-left: 10px;
        line-height: 1.5em;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li .small_info {
        padding-left: 8px;
    }

    .popup_register.full_view_wrap .popup_contents .close_btn {
        width: 80px;
        height: 34px;
        font-size: 13px;
    }
        .footer-content {
        flex-wrap: wrap;
        padding-left: 10px;
        padding-right: 10px;
    }
    .footer-content>div {
        width: 100%;
        justify-content: center;
    }
    .footer-content .logo_section {
        order: 2;
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
  
    .mo {
        display: initial;
    }
    .login-text {
        display: none;
    }

    .hero-title,
    .hero-title-highlight,
    .hero-title div {
        font-size: 24px;
    }
   .hero-section {
        height: 520px;
    }
    .workflow-section .section-title span:first-child {
        display: block;
    }
        .workflow-section .workflow-grid {
            padding-top: 20px;
        }
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
     .cta-img-box img:nth-child(1) {
    width: 100%;
    height: auto;
}
    
 .cta-img-box img:nth-child(2) {
    display: none;
}
    
  .pain-point-title,.solution-title {
    font-size: 16px;
  }
.pain-point-desc, .solution-desc, .workflow-card-desc {
    font-size: 14px;
}
    /* Modal for small screens */
    .popup_register.full_view_wrap .popup_contents {
        width: 100vw;
        max-width: 100vw;
        padding: 12px;
        border-radius: 0;
        max-height: 100vh;
        height: 100vh;
    }

    .popup_register.full_view_wrap .popup_contents .join_popup_title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part {
        max-height: calc(100vh - 100px);
        padding-right: 5px;
        margin-bottom: 10px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li {
        margin-bottom: 20px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li h3 {
        font-size: 13px;
        padding: 6px 8px;
        margin-bottom: 10px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li h5 {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .popup_register.full_view_wrap .popup_contents .popup_scroll_part li div {
        font-size: 12px;
        padding-left: 8px;
        margin-bottom: 12px;
    }

    .popup_register.full_view_wrap .popup_contents .close_btn {
        width: 70px;
        height: 32px;
        font-size: 12px;
    }
     .footer-content .logo_section img {
        width: 80px;
        height: auto;
    }

}
@media (max-width: 380px) {
    .language-switcher {
        top: 0.75rem;
        right: 0.75rem;
        gap: 0.25rem;
        padding: 4px;
    }

    .lang-btn {
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }

    .login-text {
        font-size: 0.65rem;
    }

    .hero-section {
        padding: 50px 12px 20px 12px;
        height: 450px;

    }

    .hero-badge {
        font-size: 12px;
        padding: 0.3rem 0.8rem;
    }

    .hero-title,
    .hero-title-highlight,
    .hero-title div {
        font-size: 22px;
    }

    .hero-title-highlight::before {
        width: 110px;
        height: 10px;
    }

    .hero-title-highlight.en::before {
        width: 180px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .cta-button {
        font-size: 13px;
        padding: 8px 16px;
    }

    .section-title,
    .section-title-highlight {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .pain-points-section,
    .solution-section,
    .workflow-section,
    .ai-section,
    .stats-section {
        padding: 30px 0;
    }
    .ai-section {
        padding-bottom: 100px;
    }
    .pain-points-grid,
    .solution-grid,
    .stats-grid,
    .workflow-grid,
    .section-header {
        padding: 0 12px;
    }

    .content-badge {
        font-size: 12px;
        padding: 6px 14px;
    }

    .step-indicators {
        padding: 0 12px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 9px;
    }

    .ai-carousel {
        padding: 0 8px;
    }

    .ai-carousel-inner {
        gap: 8px;
    }

 




    .ai-card h3 {
        font-size: 12px;
    }

    .ai-card p {
        font-size: 10px;
    }

    .ai-card.default img {
        height: 100px;
        margin-bottom: 8px;
    }

    .ai-card img {
        margin-bottom: 12px;
    }

    .stat-value,
    .typing-text {
        font-size: 20px;
        min-height: 28px;
    }

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

    .stat-desc {
        font-size: 13px;
    }

    .cta-section {
        padding: 0 12px 30px 12px;
    }

    .cta-content {
        padding: 20px 12px;
        gap: 20px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-text::before {
        width: 140px;
        height: 14px;
        top: 16px;
    }

    .cta-img-box {
        height: 160px;
    }

    .footer {
        padding: 1.5rem 0.75rem;
    }
    .footer .footer-content .button_section {
        flex-wrap: wrap;
    }
    .footer .footer-content .button_section button {
        width: 100%;
    }
}