/* ============================================
   Intro Animation
   ============================================ */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.intro-overlay.hidden {
    display: none;
}

.intro-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

/* Stage 1: Opening Text */
.intro-stage-1 {
    background: #ffffff;
    animation: introFadeInOut 2s ease-in-out forwards;
    z-index: 2;
}

.intro-text {
    font-size: 28px;
    font-weight: 600;
    color: #1A1A1A;
    font-style: italic;
    letter-spacing: 0.02em;
}

@keyframes introFadeInOut {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

/* Stage 2: Rotating Dots */
.intro-stage-2 {
    background: #ffffff;
    animation: showStage2 0.1s 0s forwards,
               hideStage2 0.5s 3.5s forwards;
    z-index: 1;
}

@keyframes showStage2 {
    to { opacity: 1; }
}

@keyframes hideStage2 {
    to { opacity: 0; }
}

.dots-container {
    position: relative;
    width: 200px;
    height: 200px;
    animation: rotateDots 1.5s 2s ease-in-out forwards;
}

.dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #1B5E3B;
    border-radius: 50%;
}

.dot-1 {
    top: 0;
    left: 0;
    animation: moveDot1 1.2s 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dot-2 {
    top: 0;
    right: 0;
    animation: moveDot2 1.2s 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dot-3 {
    bottom: 0;
    left: 0;
    animation: moveDot3 1.2s 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.dot-4 {
    bottom: 0;
    right: 0;
    animation: moveDot4 1.2s 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rotateDots {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes moveDot1 {
    0% { top: 0; left: 0; opacity: 1; transform: translate(0, 0) scale(1); }
    70% { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
}

@keyframes moveDot2 {
    0% { top: 0; right: 0; left: auto; opacity: 1; transform: translate(0, 0) scale(1); }
    70% { top: 50%; right: auto; left: 50%; transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { top: 50%; right: auto; left: 50%; transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
}

@keyframes moveDot3 {
    0% { bottom: 0; left: 0; top: auto; opacity: 1; transform: translate(0, 0) scale(1); }
    70% { bottom: auto; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { bottom: auto; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
}

@keyframes moveDot4 {
    0% { bottom: 0; right: 0; top: auto; left: auto; opacity: 1; transform: translate(0, 0) scale(1); }
    70% { bottom: auto; right: auto; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.6); opacity: 1; }
    100% { bottom: auto; right: auto; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.3); opacity: 0; }
}

/* Stage 3: Expand Circle */
.intro-stage-3 {
    background: #ffffff;
    animation: showStage3 0.1s 3.3s forwards,
               hideStage3Bg 0.1s 6.5s forwards;
}

@keyframes showStage3 {
    to { opacity: 1; }
}

@keyframes hideStage3Bg {
    to { background: transparent; }
}

.expand-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #1B5E3B;
    border-radius: 50%;
    opacity: 0;
    animation: expandCircle 1s 3.3s cubic-bezier(0.4, 0, 0.2, 1) forwards,
               shrinkToCorner 0.6s 6.7s cubic-bezier(0.6, 0, 0.4, 1) forwards;
}

@keyframes expandCircle {
    0% { width: 50px; height: 50px; opacity: 1; border-radius: 50%; }
    50% { opacity: 1; border-radius: 50%; }
    100% { width: 300vw; height: 300vw; opacity: 1; border-radius: 0; }
}

@keyframes shrinkToCorner {
    0% { width: 300vw; height: 300vw; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 1; border-radius: 0; }
    100% { width: 64px; height: 64px; top: auto; left: auto; bottom: 50px; right: 50px; transform: translate(0, 0); opacity: 1; border-radius: 50%; }
}

/* Stage 4: Company Info */
.intro-stage-4 {
    animation: introFadeInOut4 2s 4.5s ease-in-out forwards;
    z-index: 10;
}

@keyframes introFadeInOut4 {
    0% { opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; }
}

.intro-company {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.intro-company-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.intro-company-name .neo {
    color: #50C878;
}

.intro-company-name .spade {
    color: #FFFFFF;
}

.intro-slogan {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
    line-height: 1.5;
}

.intro-tagline {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.intro-overlay.fade-out {
    pointer-events: none;
}

.intro-overlay.fade-out .intro-stage-1,
.intro-overlay.fade-out .intro-stage-2,
.intro-overlay.fade-out .intro-stage-4 {
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Page Transition */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 10000;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.page-transition-overlay.fade-out {
    opacity: 0;
}

.page-transition-overlay.fade-in {
    opacity: 1;
    pointer-events: all;
}

.desktop {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}

.logo {
    width: 140px;
    height: auto;
}

.navigation {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #47be75;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: opacity 0.3s;
}

.side-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.side-nav-item span {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #99a1af;
}

.side-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #343434;
    transition: all 0.3s;
}

.side-nav-dot.active {
    background-color: #1b5e3b;
    border-color: #1b5e3b;
}

.side-nav-item:hover .side-nav-dot {
    border-color: #47be75;
}

/* Menu Button (Hamburger) */
.menu-btn {
    display: none;
    width: 18px;
    height: 12px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 305px;
    height: 100%;
    background: rgba(29, 29, 29, 0.20);
    backdrop-filter: blur(25px);
    z-index: 999;
    padding-top: 80px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 32px;
    list-style: none;
    padding: 40px 32px;
    width: 100%;
    margin: 0;
}

.mobile-menu-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

/* Main Content */
.main-content {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: #0a0a0a;
    padding: 232px 280px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    max-width: 1280px;
    width: 100%;
    z-index: 2;
}

.hero-label {
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title {
    font-family: Pretendard;
    font-size: 82px;
    font-style: normal;
    font-weight: 800;
    line-height: 116%;
    color: #ffffff;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: #47be75;
}

.hero-subtitle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 500px;
}

.subtitle-main {
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: #99a1af;
}

.subtitle-tagline {
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 140%;
    color: #99a1af;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 156px;
    align-self: center;
    animation: bounce 2s infinite;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator .wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: #1b5e3b;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.scroll-indicator span {
    color: #6c6c6c;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(10px);
    }
}

.hero-glow-1 {
    position: absolute;
    top: 235px;
    right: 300px;
    width: 800px;
    height: 300px;
    background: #4d636e;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.hero-glow-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1240px;
    height: 300px;
    background: #4d636e;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

/* About Section */
.about {
    padding: 128px 280px;
    background-color: #ffffff;
}

.about-container {
    display: flex;
    gap: 64px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 60px;
    overflow: hidden;
}

.about-image img:first-child {
    width: 100%;
    height: 448px;
    align-self: stretch;
    object-fit: cover;
}

.about-logo-overlay {
    width: 442px;
    height: 120px;
    aspect-ratio: 221/60;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    box-shadow: none;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
}

.about-title {
    font-family: Pretendard;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    color: #131313;
}

.about-title .highlight-green {
    color: #1b5e3b;
}

.about-text {
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #4a5565;
}

.about-text-bold {
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #4a5565;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-card {
    padding: 25px;
    background-color: #f8f9fa;
    border: 1px solid #e9eaec;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-card h3 {
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: #1b5e3b;
}

.about-card p {
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #4a5565;
}

/* How We Work Section */
.how-we-work {
    position: relative;
    display: flex;
    padding: 120px 112px;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    align-self: stretch;
    background-color: #0a0a0a;
    overflow: hidden;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    width: 100%;
    text-align: center;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-label .line {
    width: 32px;
    height: 1px;
    background-color: #6c6c6c;
}

.section-label .text {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.4px;
    color: #6c6c6c;
}

.section-title {
    font-family: Pretendard;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    color: #ffffff;
    text-align: center;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
    width: 100%;
    justify-items: center;
}

.work-card {
    width: 100%;
    height: 370.25px;
    padding: 33px;
    background-color: #0f0f0f;
    border: 1px solid #1d1d1d;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: #47be75;
}

.work-letter {
    font-family: Pretendard;
    font-size: 96px;
    font-style: normal;
    font-weight: 700;
    line-height: 96px;
    color: #47be75;
}

.work-icon {
    width: 100%;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.work-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-content h3 {
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #47be75;
}

.work-subtitle {
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: #ffffff;
}

.work-description {
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #99a1af;
}

.work-glow-1 {
    position: absolute;
    top: 527px;
    right: 100px;
    width: 800px;
    height: 300px;
    background: #4d636e;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.work-glow-2 {
    position: absolute;
    top: -111px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 300px;
    background: #4d636e;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

/* Careers Section */
.careers {
    padding: 120px 280px;
    background-color: #ffffff;
}

.careers-container {
    display: flex;
    gap: 20px;
}

.careers-title {
    flex: 1;
    font-size: 82px;
    font-weight: 700;
    color: #131313;
    line-height: 1.16;
}

.careers-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.careers-subtitle {
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: #131313;
}

.careers-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.career-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.career-text {
    width: 655px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.career-text h4 {
    font-family: Pretendard;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
    color: #131313;
}

.career-text .letter-highlight {
    color: #47BE75;
}

.career-text p {
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #6C6C6C;
}

.career-icon-wrapper {
    display: flex;
    width: 120px;
    height: 120px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.career-icon-wrapper svg {
    width: 84px;
    height: 84px;
}

/* Benefits Section */
.benefits {
    display: flex;
    padding: 120px 112px;
    flex-direction: column;
    align-items: center;
    gap: 80px;
    background-color: #0a0a0a;
}

.benefits-title {
    font-size: 82px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.benefit-category h3 {
    font-family: Pretendard;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: #ffffff;
    margin-bottom: 32px;
}

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

.benefit-item {
    display: flex;
    width: 512px;
    height: 90px;
    padding: 28px 40px;
    align-items: center;
    gap: 24px;
    align-self: stretch;
    background-color: #0f0f0f;
    border: 1px solid #1d1d1d;
    border-radius: 24px;
    transition: transform 0.3s, border-color 0.3s;
}

.benefit-item:hover {
    transform: translateX(8px);
    border-color: #47be75;
}

.benefit-item img {
    width: 32px;
    height: 32px;
}

.benefit-item span {
    font-family: Pretendard;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #ffffff;
    text-align: center;
}

/* Contact Section */
.contact {
    display: flex;
    gap: 40px;
    padding: 128px 280px;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-self: center;
    padding: 20px 0;
}

.contact-info h2 {
    font-family: Pretendard;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    color: #131313;
}

.contact-description {
    font-family: Pretendard;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    color: #4a5565;
}

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

.contact-detail {
    display: flex;
    gap: 16px;
}

.contact-detail img {
    width: 48px;
    height: 48px;
}

.contact-detail h4 {
    font-size: 16px;
    font-weight: 700;
    color: #131313;
    margin-bottom: 4px;
}

.contact-detail p {
    font-size: 14px;
    line-height: 1.5;
    color: #4a5565;
}

.contact-form-wrapper {
    flex: 1;
    padding: 40px;
    background-color: #f8f9fa;
    border: 1px solid #e9eaec;
    border-radius: 24px;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    flex: 1;
    padding: 12px 16px;
    background-color: #ffffff;
    border: 1px solid #e9eaec;
    border-radius: 10px;
    font-size: 16px;
    color: #131313;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #808080;
}

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

.contact-form button {
    padding: 16px;
    background: linear-gradient(90deg, #1b5e3b 0%, #47be75 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(71, 190, 117, 0.3);
}

/* Footer */
.footer {
    display: flex;
    padding: 48px 64px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-top: 1px solid #E9EAEC;
    background: #F8F9FA;
}

.footer-content {
    display: flex;
    padding: 0 48px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.footer-logo {
    width: 140px;
    height: auto;
}

.footer-copyright {
    font-size: 12px;
    color: #4a5565;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 12px;
    color: #4a5565;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #1b5e3b;
}

/* Hero Icon */
.hero-icon {
    position: fixed;
    bottom: 80px;
    right: 80px;
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    border-radius: 16777200px;
    background: var(--primary, #47BE75);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
    z-index: 50;
    transition: opacity 0.3s ease;
}

.hero-icon img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ============================================
   Responsive Design
   - PC: 1025px 이상
   - Tablet: 601px ~ 1024px
   - Mobile: 600px 이하
   ============================================ */

/* ----------------------------------------
   Tablet (max-width: 1024px)
   ---------------------------------------- */
@media (max-width: 1024px) {

    /* -- Header & Navigation -- */
    .side-nav {
        display: none;
    }

    /* -- Hero Section -- */
    .hero {
        padding: 120px 40px;
    }

    .scroll-indicator {
        display: none;
    }

    /* -- About Section -- */
    .about {
        display: flex;
        padding: 128px 40px;
        flex-direction: column;
        align-items: center;
        gap: 128px;
        align-self: stretch;
    }

    .about-container {
        gap: 40px;
    }

    .about-image {
        height: 448.78px;
        flex-shrink: 0;
        align-self: center;
    }

    .about-title {
        font-size: 40px;
        line-height: 125%;
    }

    .about-card {
        padding: 16px;
    }

    /* -- How We Work Section -- */
    .how-we-work {
        padding: 120px 40px;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: stretch;
    }

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

    /* -- Careers Section -- */
    .careers {
        display: flex;
        padding: 120px 40px;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

    .careers-container {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .careers-content {
        width: 100%;
    }

    .career-item {
        width: 100%;
    }

    .career-text {
        width: 100%;
        flex: 1;
    }

    .career-text h4 {
        font-size: 60px;
    }

    /* -- Benefits Section -- */
    .benefits {
        display: flex;
        padding: 120px 40px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        align-self: stretch;
    }

    .benefits-title {
        text-align: left;
    }

    .benefits-grid {
        display: flex;
        flex-direction: column;
        gap: 80px;
        width: 100%;
    }

    .benefit-category {
        display: flex;
        flex-direction: column;
    }

    .benefit-category.open {
        gap: 32px;
    }

    .benefit-category h3 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 0;
        margin: 0;
        user-select: none;
    }

    .benefit-category h3::after {
        content: '';
        width: 20px;
        height: 20px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        flex-shrink: 0;
        transition: transform 0.3s;
    }

    .benefit-category.open h3::after {
        transform: rotate(180deg);
    }

    .benefit-items {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .benefit-category.open .benefit-items {
        max-height: 600px;
    }

    .benefit-item {
        width: 100%;
    }

    .benefit-item:hover {
        transform: none;
        border-color: #1d1d1d;
    }

    /* -- Contact Section -- */
    .contact {
        display: flex;
        padding: 128px 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        align-self: stretch;
    }

    .contact-info {
        width: 100%;
    }

    .contact-form-wrapper {
        width: 100%;
    }

    /* -- Footer -- */
    .footer {
        padding: 48px 40px;
    }

    .footer-content {
        padding: 0;
    }

    /* -- Floating Elements -- */
    .hero-icon {
        bottom: 40px;
        right: 40px;
    }
}

/* ----------------------------------------
   Mobile (max-width: 600px)
   ---------------------------------------- */
@media (max-width: 600px) {

    /* -- Header & Navigation -- */
    .navigation {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .header {
        padding: 20px 20px;
    }

    /* -- Hero Section -- */
    .hero {
        padding: 80px 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

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

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

    .hero-subtitle {
        gap: 2px;
    }

    .subtitle-main {
        font-size: 14px;
        line-height: 140%;
    }

    .subtitle-tagline {
        font-size: 12px;
        line-height: 140%;
    }

    /* -- About Section -- */
    .about {
        display: flex;
        padding: 40px 20px;
        flex-direction: column;
        align-items: center;
        gap: 128px;
        align-self: stretch;
    }

    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        height: 448.78px;
        flex-shrink: 0;
        align-self: stretch;
    }

    .about-title {
        font-size: 32px;
        line-height: 125%;
    }

    .about-card {
        padding: 16px;
    }

    /* -- How We Work Section -- */
    .how-we-work {
        padding: 40px 20px;
        gap: 40px;
    }

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

    .section-title {
        font-size: 32px;
        line-height: 100%;
    }

    /* -- Careers Section -- */
    .careers {
        display: flex;
        padding: 40px 20px;
        flex-direction: column;
        align-items: flex-start;
        align-self: stretch;
    }

    .careers-content {
        gap: 40px;
    }

    .careers-grid {
        gap: 40px;
    }

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

    .careers-subtitle {
        font-size: 20px;
    }

    .career-item {
        align-items: center;
    }

    .career-icon-wrapper {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

    .career-icon-wrapper svg {
        width: 56px;
        height: 56px;
    }

    .career-text {
        gap: 12px;
    }

    .career-text h4 {
        font-size: 24px;
    }

    .career-text p {
        font-size: 14px;
    }

    /* -- Benefits Section -- */
    .benefits {
        padding: 40px 20px;
    }

    .benefits-grid {
        gap: 40px;
    }

    .benefit-category.open {
        gap: 20px;
    }

    .benefit-category h3 {
        font-size: 20px;
    }

    .benefit-item {
        padding: 24px 20px;
        height: 74px;
        border-radius: 20px;
    }

    .benefit-item span {
        font-size: 16px;
    }

    .benefit-item img {
        width: 24px;
        height: 24px;
    }

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

    /* -- Contact Section -- */
    .contact {
        padding: 40px 20px;
        gap: 20px;
    }

    .contact-form-wrapper {
        border-radius: 20px;
        padding: 16px;
    }

    .contact-form {
        gap: 12px;
    }

    .contact-info h2 {
        font-size: 32px;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 8px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    /* -- Footer -- */
    .footer {
        padding: 48px 40px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    /* -- Floating Elements -- */
    .hero-icon {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }
}
